diff --git a/Configuring-shell-key-bindings.md b/Configuring-shell-key-bindings.md index 81ad1d8..5ce7f63 100644 --- a/Configuring-shell-key-bindings.md +++ b/Configuring-shell-key-bindings.md @@ -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