summaryrefslogtreecommitdiff
path: root/README-VIM.md
diff options
context:
space:
mode:
Diffstat (limited to 'README-VIM.md')
-rw-r--r--README-VIM.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/README-VIM.md b/README-VIM.md
index 4913fc74..ccb9bf76 100644
--- a/README-VIM.md
+++ b/README-VIM.md
@@ -142,6 +142,28 @@ command! -bang MyStuff
\ call fzf#run(fzf#wrap('my-stuff', {'dir': '~/my-stuff'}, <bang>0))
```
+fzf inside terminal buffer
+--------------------------
+
+The latest versions of Vim and Neovim include builtin terminal emulator
+(`:terminal`) and fzf will start in a terminal buffer in the following cases:
+
+- On Neovim
+- On GVim
+- On Terminal Vim with the non-default layout
+ - `call fzf#run({'left': '30%'})` or `let g:fzf_layout = {'left': '30%'}`
+
+### Hide statusline
+
+When fzf starts in a terminal buffer, you may want to hide the statusline of
+the containing buffer.
+
+```vim
+autocmd! FileType fzf
+autocmd FileType fzf set laststatus=0 noshowmode noruler
+ \| autocmd BufLeave <buffer> set laststatus=2 showmode ruler
+```
+
GVim
----