From 3e4595a57d33ffcbff4d0a2ae78664cb8a94187f Mon Sep 17 00:00:00 2001 From: Felipe Zorzo Date: Sat, 3 Sep 2022 22:29:06 -0300 Subject: [PATCH] Update in accordance to commit c387689 --- Configuring-shell-key-bindings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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