mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-25 22:27:41 +00:00
Update FZF_DEFAULT_COMMAND example
This commit is contained in:
parent
14f0d2035e
commit
aaef18295d
@ -132,8 +132,10 @@ start fzf with `-e` or `--exact` option. Note that when `--exact` is set,
|
|||||||
|
|
||||||
- `FZF_DEFAULT_COMMAND`
|
- `FZF_DEFAULT_COMMAND`
|
||||||
- Default command to use when input is tty
|
- Default command to use when input is tty
|
||||||
|
- e.g. `export FZF_DEFAULT_COMMAND='ag -g ""'`
|
||||||
- `FZF_DEFAULT_OPTS`
|
- `FZF_DEFAULT_OPTS`
|
||||||
- Default options. e.g. `export FZF_DEFAULT_OPTS="--reverse --inline-info"`
|
- Default options
|
||||||
|
- e.g. `export FZF_DEFAULT_OPTS="--reverse --inline-info"`
|
||||||
|
|
||||||
Examples
|
Examples
|
||||||
--------
|
--------
|
||||||
@ -335,10 +337,10 @@ filtering:
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
# Feed the output of ag into fzf
|
# Feed the output of ag into fzf
|
||||||
ag -l -g "" | fzf
|
ag -g "" | fzf
|
||||||
|
|
||||||
# Setting ag as the default source for fzf
|
# Setting ag as the default source for fzf
|
||||||
export FZF_DEFAULT_COMMAND='ag -l -g ""'
|
export FZF_DEFAULT_COMMAND='ag -g ""'
|
||||||
|
|
||||||
# Now fzf (w/o pipe) will use ag instead of find
|
# Now fzf (w/o pipe) will use ag instead of find
|
||||||
fzf
|
fzf
|
||||||
|
Loading…
Reference in New Issue
Block a user