From fc1b119159f24136e64a85a8ea3dd51f19161602 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 19 Nov 2017 12:07:03 +0900 Subject: [vim] Add instruction to hide statusline of terminal buffer (#1143) --- README-VIM.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'README-VIM.md') 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'}, 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 set laststatus=2 showmode ruler +``` + GVim ---- -- cgit v1.2.3