Hi,
Thank you for this great work!
I used "Unite file_rec/async" in neovim to find files before.
After I found fzf, this is now my favorite. It is super fast.
Could I know how to let fzf follow the symbolic links?
I checked the man page and command help and did not find any information about that.
Hi, fzf currently does not work on neovim, I'll probably be working on neovim support during the weekend (see #137).
Having said that,
seq 10000 | fzffind process when input is not explicitly given.find * -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null$FZF_DEFAULT_COMMANDexport FZF_DEFAULT_COMMAND='seq 1 100'
fzf
:FZF command of Vim plugin is built upon this behavior. You can make it follow symlinks by setting FZF_DEFAULT_COMMAND to the command that works that way.fzf#run() function as described in the readme page. (see https://github.com/junegunn/fzf#usage-as-vim-plugin for details)Try this (added -L):
export FZF_DEFAULT_COMMAND="find -L * -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null"
Most helpful comment
Try this (added
-L):