summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-06-30 21:17:19 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-06-30 21:17:19 +0900
commitd1676776aaf1aa283f556ff44879d3621073e825 (patch)
tree67f6f725dcf1a175f3dff4ba239fc77873981ca5
parentbdde69d011436abdf9e90dff584981e83775d834 (diff)
Update CHANGELOG
-rw-r--r--CHANGELOG.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f465c6c0..a4d1435f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,37 @@
CHANGELOG
=========
+0.22.0 (WIP)
+------
+- Added more options for `--bind`
+ - `backward-eof` event
+ ```sh
+ # Aborts when you delete backward when the query prompt is already empty
+ fzf --bind backward-eof:abort
+ ```
+ - `refresh-preview` action
+ ```sh
+ # Rerun preview command when you hit '?'
+ fzf --preview 'echo $RANDOM' --bind '?:refresh-preview'
+ ```
+ - `preview` action
+ ```sh
+ # Default preview command with an extra preview binding
+ fzf --preview 'file {}' --bind '?:preview:cat {}'
+
+ # A preview binding with no default preview command
+ # (Preview window is initially empty)
+ fzf --bind '?:preview:cat {}'
+
+ # Preview window hidden by default, it appears when you first hit '?'
+ fzf --bind '?:preview:cat {}' --preview-window hidden
+ ```
+- Vim plugin
+ - `tmux` layout option for using fzf-tmux
+ ```vim
+ let g:fzf_layout = { 'tmux': '-p90%,60%' }
+ ```
+
0.21.1
------
- Shell extension