diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2024-10-01 19:15:17 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2024-10-01 19:15:17 +0900 |
| commit | 1a32220ca94ae897cab408a9eeaed094a8a739f1 (patch) | |
| tree | eac828f9fbc416c7d19fb74bc65e8e45d01b4786 /CHANGELOG.md | |
| parent | 4161403a1d6286f6ba7898b1f22f30d01d85b8dc (diff) | |
| download | fzf-1a32220ca94ae897cab408a9eeaed094a8a739f1.tar.gz | |
Add --gap option to put empty lines between items
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 80b6491a..3ea88846 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ CHANGELOG ========= +0.56.0 +------ +- Added `--gap[=N]` option to display empty lines between items. + - This can be useful to visually separate adjacent multi-line items. + ```sh + # All bash functions, highlighted + declare -f | perl -0777 -pe 's/^}\n/}\0/gm' | + bat --plain --language bash --color always | + fzf --read0 --ansi --reverse --multi --highlight-line --gap + ``` + - Or just to make the list easier to read. For single-line items, you probably want to set `--color gutter:-1` as well to hide the gutter. + ```sh + fzf --gap --color gutter:-1 + ``` + 0.55.0 ------ _Release highlights: https://junegunn.github.io/fzf/releases/0.55.0/_ |
