summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-15 22:23:52 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-01-15 22:23:52 +0900
commit9d6637c1b3b3c7c0a6eadbc73fe887e11ab14b72 (patch)
tree5965ff5a98e4dba7281a96c28474eb99df0550ea /CHANGELOG.md
parent56fef7c8df2713261fbdbd396aa81ed23d9a945a (diff)
downloadfzf-9d6637c1b3b3c7c0a6eadbc73fe887e11ab14b72.tar.gz
Add gap line
Close #4182
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3e30749b..75e873b2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -61,6 +61,16 @@ Also, fzf now offers "style presets" for quick customization, which can be activ
- `transform-header-label`
- Added `--preview-border[=STYLE]` as short for `--preview-window=border[-STYLE]`
- Added new preview border style `line` which draws a single separator line between the preview window and the rest of the interface
+- fzf will now render a dashed line (`┈┈`) in each `--gap` for better visual separation.
+ ```sh
+ # All bash/zsh functions, highlighted
+ declare -f |
+ perl -0 -pe 's/^}\n/}\0/gm' |
+ bat --plain --language bash --color always |
+ fzf --read0 --ansi --layout reverse --multi --highlight-line \
+ --gap
+ ```
+ * You can customize the line using `--gap-line[=STR]`.
- You can specify `border-native` to `--tmux` so that native tmux border is used instead of `--border`. This can be useful if you start a different program from inside the popup.
```sh
fzf --tmux border-native --bind 'enter:execute:less {}'