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) --- doc/fzf.txt | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'doc/fzf.txt') diff --git a/doc/fzf.txt b/doc/fzf.txt index d0001149..387dc049 100644 --- a/doc/fzf.txt +++ b/doc/fzf.txt @@ -1,4 +1,4 @@ -fzf.txt fzf Last change: September 29 2017 +fzf.txt fzf Last change: November 19 2017 FZF - TABLE OF CONTENTS *fzf* *fzf-toc* ============================================================================== @@ -8,6 +8,8 @@ FZF - TABLE OF CONTENTS *fzf* *fzf-to Examples fzf#run fzf#wrap + fzf inside terminal buffer + Hide statusline GVim License @@ -167,6 +169,29 @@ function that decorates the options dictionary so that it understands \ call fzf#run(fzf#wrap('my-stuff', {'dir': '~/my-stuff'}, 0)) < +FZF INSIDE TERMINAL BUFFER *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 >___________________________________________________________~ + *fzf-hide-statusline* + +When fzf starts in a terminal buffer, you may want to hide the statusline of +the containing buffer. +> + autocmd! FileType fzf + autocmd FileType fzf set laststatus=0 noshowmode noruler + \| autocmd BufLeave set laststatus=2 showmode ruler +< + GVIM *fzf-gvim* ============================================================================== -- cgit v1.2.3