From f96173cbe4129124e6cbf66804e06dbabc9066c3 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 16 Jan 2017 12:01:58 +0900 Subject: [PATCH] Add -L flag to the default find command Close #781 --- src/constants_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants_unix.go b/src/constants_unix.go index 52677e6..05f66d0 100644 --- a/src/constants_unix.go +++ b/src/constants_unix.go @@ -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/^..//` )