m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Update in accordance to commit c387689

Felipe Zorzo
2022-09-03 22:29:06 -03:00
parent 22602a028e
commit 3e4595a57d

@@ -37,10 +37,10 @@ export FZF_CTRL_T_OPTS="--select-1 --exit-0"
### Sorting and exact matching
Sorting is disabled by default to respect chronological ordering. You can dynamically enable sorting by pressing `CTRL-R` again, but if you like it to be enabled by default, add `--sort` to `FZF_CTRL_R_OPTS`. Likewise, if you prefer to use exact (non-fuzzy) matching, add `--exact`.
Sorting by relevance is enabled by default. You can dynamically switch to chronological order by pressing `CTRL-R` again, but if you like it to be enabled by default, add `--no-sort` to `FZF_CTRL_R_OPTS`. Likewise, if you prefer to use exact (non-fuzzy) matching, add `--exact`.
```sh
export FZF_CTRL_R_OPTS='--sort --exact'
export FZF_CTRL_R_OPTS='--no-sort --exact'
```
### Full command on preview window