m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 15:23:48 -05:00

Update FZF_DEFAULT_COMMAND example (#310)

This commit is contained in:
Junegunn Choi
2015-11-03 22:25:50 +09:00
parent 5769d3867d
commit 672b593634

View File

@@ -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