From 8b0e3b1624a3957afb26aaee074a4faf637fe549 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 26 Oct 2020 00:15:30 +0900 Subject: [PATCH] Update --color docs --- CHANGELOG.md | 9 +++++++-- man/man1/fzf.1 | 3 ++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 075c85b..9863d65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,12 +15,17 @@ CHANGELOG sleep 0.01 done' ``` -- Extended color specification: supports text styles +- Updated `--color` option to support text styles - `regular` / `bold` / `dim` / `underline` / `italic` / `reverse` / `blink` ```sh + # * Set -1 to keep the original color + # * Multiple style attributes can be combined + # * Italic style may not be supported by some terminals rg --line-number --no-heading --color=always "" | fzf --ansi --prompt "Rg: " \ - --color fg+:italic,hl:underline:-1,hl+:reverse:-1,prompt:reverse + --color fg+:italic,hl:underline:-1,hl+:underline:reverse:-1 \ + --color pointer:underline:reverse,prompt:reverse \ + --pointer ' ' ``` - To indicate if `--multi` mode is enabled, fzf will print the number of selected items even when no item is selected diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index b8898f3..da2642e 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -309,8 +309,9 @@ color mappings. \fBregular \fRClears previously set attributes; should precede the other ones \fBbold\fR \fBunderline\fR - \fBitalic\fR \fBreverse\fR + \fBdim\fR + \fBitalic\fR .B EXAMPLES: