summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2013-10-24 13:40:40 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2013-10-24 13:40:40 +0900
commit9efb663f389274a2b69af8aa36f05ed2e90db70d (patch)
tree2cbfe0043c8afecf08a6ffe7e2ca62e2f2e54e7f
parent2bf54a0a5757c47b5b005ab4f3d7bd97f7e392c8 (diff)
downloadfzf-9efb663f389274a2b69af8aa36f05ed2e90db70d.tar.gz
Include symlinks in the result
-rwxr-xr-xfzf2
1 files changed, 1 insertions, 1 deletions
diff --git a/fzf b/fzf
index d72e85d5..8fe0e3cd 100755
--- a/fzf
+++ b/fzf
@@ -136,7 +136,7 @@ C.init_pair 5, C::COLOR_CYAN, C::COLOR_BLACK
@read =
if $stdin.tty?
if !`which find`.empty?
- IO.popen("find * -path '*/\\.*' -prune -o -type f -print 2> /dev/null")
+ IO.popen("find * -path '*/\\.*' -prune -o -type f -print -o -type l -print 2> /dev/null")
else
exit 1
end