summaryrefslogtreecommitdiffstats
path: root/doc/fzf.txt
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-11-19 12:07:03 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-11-19 12:07:54 +0900
commitfc1b119159f24136e64a85a8ea3dd51f19161602 (patch)
treefa44ef9aacad66e2b565fa5671eb4c82672aed30 /doc/fzf.txt
parent2cd0d4a9f7a0a0a86c1ee70da9fb970ec18eac50 (diff)
[vim] Add instruction to hide statusline of terminal buffer (#1143)
Diffstat (limited to 'doc/fzf.txt')
-rw-r--r--doc/fzf.txt27
1 files changed, 26 insertions, 1 deletions
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'}, <bang>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 <buffer> set laststatus=2 showmode ruler
+<
+
GVIM *fzf-gvim*
==============================================================================