summaryrefslogtreecommitdiffstats
path: root/README-VIM.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-06-29 22:26:13 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-06-29 22:27:36 +0900
commitbdde69d011436abdf9e90dff584981e83775d834 (patch)
tree9f8891a45838cb6b73a0e5e9166ad5a7fc4d40c3 /README-VIM.md
parent6dec42a33ac8262977623102fc0d700e8825d78a (diff)
[vim] Disable height calculation when 'preview' is found in the option string
Fix #2093 And we'll phase out height specification with `~` prefix.
Diffstat (limited to 'README-VIM.md')
-rw-r--r--README-VIM.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README-VIM.md b/README-VIM.md
index be5bdbfa..89b6cd08 100644
--- a/README-VIM.md
+++ b/README-VIM.md
@@ -128,7 +128,7 @@ let g:fzf_action = {
" Default fzf layout
" - down / up / left / right
-let g:fzf_layout = { 'down': '~40%' }
+let g:fzf_layout = { 'down': '40%' }
" You can set up fzf window using a Vim command (Neovim or latest Vim 8 required)
let g:fzf_layout = { 'window': 'enew' }
@@ -416,7 +416,7 @@ 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
+For example, if you use the default layout (`{'down': '40%'}`) on Neovim, you
might want to temporarily disable the statusline for a cleaner look.
```vim