m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-08 11:23:47 -05:00

--gutter ' ' --color gutter:reverse

This commit is contained in:
Junegunn Choi
2025-09-29 22:51:32 +09:00
parent 8f0c91545d
commit 548061dbde

View File

@@ -83,7 +83,8 @@ This version includes a few minor updates to fzf's classic visual style:
#### `--gutter CHAR` #### `--gutter CHAR`
Added `--gutter CHAR` option for customizing the gutter column. Some examples using [box-drawing characters](https://en.wikipedia.org/wiki/Box-drawing_characters): The gutter column can now be customized using `--gutter CHAR` and styled with
`--color gutter:...`. Examples:
```sh ```sh
# Right-aligned gutter # Right-aligned gutter
@@ -92,17 +93,11 @@ fzf --gutter '▐'
# Even thinner gutter # Even thinner gutter
fzf --gutter '▎' fzf --gutter '▎'
# Checker # Yellow checker pattern
fzf --gutter '▚' fzf --gutter '▚' --color gutter:yellow
# Dotted # Classic style
fzf --gutter '' fzf --gutter ' ' --color gutter:reverse
# Full-width
fzf --gutter '█'
# No gutter
fzf --gutter ' '
``` ```
#### `--gutter-raw CHAR` #### `--gutter-raw CHAR`