Skip to content
Snippets Groups Projects
Unverified Commit f96173cb authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Add -L flag to the default find command

Close #781
parent 11015df5
No related branches found
No related tags found
No related merge requests found
......@@ -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/^..//`
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment