summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-12-07 19:35:48 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-12-07 19:35:48 +0900
commit257ddd028d94c246d999814aef6fd509fd36b4be (patch)
treec574eb16261ded1c46afa80522839adc8ad3bb25 /CHANGELOG.md
parente0a22e76f8254eb5478f86bb43ccc0115a46c25f (diff)
Update CHANGELOG
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d2bf95b..678efdda 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,29 @@
CHANGELOG
=========
+0.24.5
+------
+- Text attributes set in `--color` are not reset when fzf sees another
+ `--color` option for the same element. This allows you to put custom text
+ attributes in your `$FZF_DEFAULT_OPTS` and still have those attributes
+ even when you override the colors.
+
+ ```sh
+ # Default colors and attributes
+ fzf
+
+ # Apply custom text attributes
+ export FZF_DEFAULT_OPTS='--color fg+:italic,hl:-1:underline,hl+:-1:reverse:underline'
+
+ fzf
+
+ # Different colors but you still have the attributes
+ fzf --color hl:176,hl+:177
+
+ # Write "regular" if you want to clear the attributes
+ fzf --color hl:176:regular,hl+:177:regular
+ ```
+
0.24.4
------
- Added `--preview-window` option `follow`