-
-
Notifications
You must be signed in to change notification settings - Fork 661
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
Add option to print full paths (would be especially useful with exa --tree
)
#754
Comments
@favetilinguis Hey bud, good news. You can already. Pass the -T argument with tree. :) |
@wsb1994 BTW
|
cc @ogham |
exa --tree
)
I made this option at mine fork. perfectly combined with fzf exa -L2 --long \
--add-path \
--no-filesize \
--no-permissions \
--no-time \
--no-user \
--git \
--tree \
--icons \
--all \
--group-directories-first \
--color=always \
-I '.git|.vscode' \
| fzf -d: --with-nth 2 --ansi \
--no-preview \
--multi \
| cut -f1 -d: | perl -pe 's/^\s+//' ./src/main.rs
./src/logger.rs |
When you run
tree -f
you get the full path, this is very handy when searching for files withtree -f | grep <file>
. Would be nice to have the same with exa.The text was updated successfully, but these errors were encountered: