diff options
Diffstat (limited to 'README-VIM.md')
| -rw-r--r-- | README-VIM.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/README-VIM.md b/README-VIM.md index af514da0..126862b2 100644 --- a/README-VIM.md +++ b/README-VIM.md @@ -127,8 +127,9 @@ let g:fzf_action = { \ 'ctrl-v': 'vsplit' } " Default fzf layout -" - down / up / left / right +" - down / up / left / right / window let g:fzf_layout = { 'down': '40%' } +let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } } " You can set up fzf window using a Vim command (Neovim or latest Vim 8 required) let g:fzf_layout = { 'window': 'enew' } @@ -416,8 +417,8 @@ When fzf starts in a terminal buffer, the file type of the buffer is set to `fzf`. So you can set up `FileType fzf` autocmd to customize the settings of the window. -For example, if you use the default layout (`{'down': '40%'}`) on Neovim, you -might want to temporarily disable the statusline for a cleaner look. +For example, if you use a non-popup layout (e.g. `{'down': '40%'}`) on Neovim, +you might want to temporarily disable the statusline for a cleaner look. ```vim if has('nvim') && !exists('g:fzf_layout') |
