mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-20 01:23:43 -05:00
0.24.0
This commit is contained in:
19
CHANGELOG.md
19
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
|
||||
------
|
||||
|
||||
Reference in New Issue
Block a user