summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-16 10:05:26 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-01-16 10:06:11 +0900
commit13135108906fce00dab5a403bf308e19382e630e (patch)
tree4d31ed91c85e747f5454b20ef7f0970c1bd0c7db /CHANGELOG.md
parentb712f2bb6a5c1eed5661072604e308951ef655f2 (diff)
downloadfzf-13135108906fce00dab5a403bf308e19382e630e.tar.gz
Do not apply nth style when the whole range is covered
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 28d21bbf..94bf57e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -95,7 +95,7 @@ Also, fzf now offers "style presets" for quick customization, which can be activ
# With 'change-nth'. The current nth option is exported as $FZF_NTH.
ps -ef | fzf --reverse --header-lines 1 --header-border bottom --input-border \
--color nth:regular,fg:dim,current-fg:dim \
- --nth 8.. --bind 'ctrl-n:change-nth(1|2|3|4|5|6|7|)' \
+ --bind 'ctrl-n:change-nth(8..|1|2|3|4|5|6|7|)' \
--bind 'result:transform-prompt:echo "${FZF_NTH}> "'
```
- A single-character delimiter is now treated as a plain string delimiter rather than a regular expression delimiter, even if it's a regular expression meta-character.