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

Include symlinks in the result

parent 2bf54a0a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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