m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-12 13:23:48 -05:00

Add -L flag to the default find command

Close #781
This commit is contained in:
Junegunn Choi
2017-01-16 12:01:58 +09:00
parent 11015df52f
commit f96173cbe4

View File

@@ -4,5 +4,5 @@ package fzf
const (
// Reader
defaultCommand = `find . -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | sed s/^..//`
defaultCommand = `find -L . -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | sed s/^..//`
)