summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2021-05-22 13:13:55 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2021-05-22 13:16:39 +0900
commit347c4b26258bf3e20777c9a1a6d1258e58a3eba3 (patch)
tree91096d076db7f16ad5c6eb008a593a51e89cae88 /CHANGELOG.md
parent34f0d4d0c4fdec5e8891d909bd2712cc21998959 (diff)
Add 'unbind' action
Fix #2486
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b9683721..c5f7f509 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,22 @@
CHANGELOG
=========
+0.27.1
+------
+- Added `unbind` action. In the following Ripgrep launcher example, you can
+ use `unbind(reload)` to switch to fzf-only filtering mode.
+ - See https://github.com/junegunn/fzf/blob/master/ADVANCED.md#switching-to-fzf-only-search-mode
+- Vim plugin
+ - Vim plugin will stop immediately even when the source command hasn't finished
+ ```vim
+ " fzf will read the stream file while allowing other processes to append to it
+ call fzf#run({'source': 'cat /dev/null > /tmp/stream; tail -f /tmp/stream'})
+ ```
+ - It is now possible to open popup window relative to the currrent window
+ ```vim
+ let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true, 'yoffset': 1.0 } }
+ ```
+
0.27.0
------
- More border options for `--preview-window`