From a9e7566500598f0f588504fd895ef31ac8c271c9 Mon Sep 17 00:00:00 2001 From: Manpreet Singh Date: Sat, 13 Aug 2016 23:30:28 -0700 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 2d29f90..8ba1f6e 100644 --- a/Examples.md +++ b/Examples.md @@ -51,7 +51,7 @@ vf() { # fd - cd to selected directory fd() { local dir - dir=$(find ${1:-*} -path '*/\.*' -prune \ + dir=$(find ${1:-.} -path '*/\.*' -prune \ -o -type d -print 2> /dev/null | fzf +m) && cd "$dir" }