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" }