summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-10-27 13:53:24 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-10-27 23:57:18 +0900
commit0d5f862daf45336c12c2f540736b3d7ca396c78d (patch)
tree66487748928def955046ffd9516bb328f3929f08 /CHANGELOG.md
parent51dfacd5421678cd2d453774176516ef71445dfc (diff)
0.24.00.24.0
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 626105cd..3c368652 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,6 +29,24 @@ CHANGELOG
```
- More `--border` options
- `vertical`, `top`, `bottom`, `left`, `right`
+ - Updated Vim plugin to use these new `--border` options
+ ```vim
+ " Floating popup window in the center of the screen
+ let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
+
+ " Popup with 100% width
+ let g:fzf_layout = { 'window': { 'width': 1.0, 'height': 0.5, 'border': 'horizontal' } }
+
+ " Popup with 100% height
+ let g:fzf_layout = { 'window': { 'width': 0.5, 'height': 1.0, 'border': 'vertical' } }
+
+ " Similar to 'down' layout, but it uses a popup window and doesn't affect the window layout
+ let g:fzf_layout = { 'window': { 'width': 1.0, 'height': 0.5, 'yoffset': 1.0, 'border': 'top' } }
+
+ " Opens on the right;
+ " 'highlight' option is still supported but it will only take the foreground color of the group
+ let g:fzf_layout = { 'window': { 'width': 0.5, 'height': 1.0, 'xoffset': 1.0, 'border': 'left', 'highlight': 'Comment' } }
+ ```
- To indicate if `--multi` mode is enabled, fzf will print the number of
selected items even when no item is selected
```sh
@@ -39,6 +57,7 @@ CHANGELOG
seq 100 | fzf --multi 5
# 100/100 (0/5)
```
+- Since 0.24.0, release binaries will be uploaded to https://github.com/junegunn/fzf/releases
0.23.1
------