Update FZF_DEFAULT_COMMAND example (#310)

pull/403/head
Junegunn Choi 9 years ago
parent 5769d3867d
commit 672b593634

@ -355,7 +355,8 @@ speed of the traversal.
```sh
export FZF_DEFAULT_COMMAND='
(git ls-tree -r --name-only HEAD ||
find * -name ".*" -prune -o -type f -print -o -type l -print) 2> /dev/null'
find . -path "*/\.*" -prune -o -type f -print -o -type l -print |
sed s/^..//) 2> /dev/null'
```
#### Fish shell

Loading…
Cancel
Save