Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some improvements. #951

Merged
merged 21 commits into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
85d7fbf
added better icons from fzf && color
Shuraken007 Nov 16, 2023
49f5b64
added options, short dirs
Shuraken007 Nov 17, 2023
59a4561
support fzf output
Shuraken007 Nov 21, 2023
407f347
args & print_with_symbol refactoring
Shuraken007 Nov 24, 2023
4499b66
add substitution flag
Shuraken007 Dec 1, 2023
fe4a6f6
fixed tests
Shuraken007 Dec 3, 2023
b6157bc
added --align
Shuraken007 Dec 5, 2023
fa6d371
cargo fmt
Shuraken007 Dec 5, 2023
7a115ab
Move the File fields to private and expose them through functions
coreyja Dec 11, 2023
b7b04bb
Ok get the simple methods working off PathBuf, still some todo! to fi…
coreyja Dec 12, 2023
7524a00
Oh some of these were easy, now for the big one up next!
coreyja Dec 12, 2023
4ff62b5
Refactor this method to use more things from PathBuf, namely the '.co…
coreyja Dec 12, 2023
368c94d
Fix a bug in my impl
coreyja Dec 12, 2023
90ed3a2
Fix a bug in my short_dir impl where we were including the file path,…
coreyja Dec 12, 2023
a1dbcb9
Fix bug in the reverse where I wasn't using the right symbol
coreyja Dec 12, 2023
bc7ce0b
Just some cleanup. I think we can operate right on the slices instead…
coreyja Dec 12, 2023
3d5521f
Remove the FileColouts and FileIcon trait and use FileExtensions dire…
coreyja Dec 12, 2023
6a62c54
Do some refactoring in the other files, think I'm running out of stea…
coreyja Dec 12, 2023
e3aefd4
Saved is_dir in File for reusing
Shuraken007 Dec 12, 2023
5464b4c
cargo fmt
Shuraken007 Dec 12, 2023
1c92205
removed extra unavailable compare RootDir
Shuraken007 Dec 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/<executable file>",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"cSpell.words": [
"devicon",
"dirshort",
"dirshortreverse",
"iconcolor",
"iconify",
"nameshort",
"nodir"
]
}
Loading