From 9efb663f389274a2b69af8aa36f05ed2e90db70d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 24 Oct 2013 13:40:40 +0900 Subject: [PATCH] Include symlinks in the result --- fzf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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