From 49e88a1d75b059841f46dcf71459db4687be653c Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 11 Mar 2016 01:15:28 +0900 Subject: [PATCH] Update help doc --- doc/fzf-vim.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/fzf-vim.txt b/doc/fzf-vim.txt index 1ecb48a..c1f9219 100644 --- a/doc/fzf-vim.txt +++ b/doc/fzf-vim.txt @@ -124,9 +124,14 @@ But its functionality is still available via `call pathogen#helptags()`.) \ 'ctrl-v': 'vsplit' } " Default fzf layout - let g:fzf_layout = { 'down': '40%' } + " - down / up / left / right + " - window (nvim only) + let g:fzf_layout = { 'down': '~40%' } - " For Commits and BCommits to customize the options used by 'git log': + " [Buffers] Jump to the existing window if possible + let g:fzf_buffers_jump = 1 + + " [[B]Commits] to customize the options used by 'git log': let g:fzf_commits_log_options = \ '--graph --color=always --format="%C(auto)%h%d %s %C(black)%C(bold)%cr"'