From d72f1361f1cad21a5deb75913feec1070d539fd1 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 25 Sep 2015 11:45:16 +0900 Subject: [PATCH] Update customization examples --- README.md | 3 ++- doc/fzf-vim.txt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 13101cc..4b37d30 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,8 @@ let g:fzf_action = { let g:fzf_layout = { 'down': '40%' } " Advanced customization using autoload functions -autocmd VimEnter * command! Colors call fzf#vim#colors({'left': '15%'}) +autocmd VimEnter * command! Colors + \ call fzf#vim#colors({'left': '15%', 'options': '--reverse --margin 30%,0'}) ``` Mappings diff --git a/doc/fzf-vim.txt b/doc/fzf-vim.txt index f21ad49..ff4e945 100644 --- a/doc/fzf-vim.txt +++ b/doc/fzf-vim.txt @@ -123,7 +123,8 @@ But its functionality is still available via `call pathogen#helptags()`.) let g:fzf_layout = { 'down': '40%' } " Advanced customization using autoload functions - autocmd VimEnter * command! Colors call fzf#vim#colors({'left': '15%'}) + autocmd VimEnter * command! Colors + \ call fzf#vim#colors({'left': '15%', 'options': '--reverse --margin 30%,0'}) < MAPPINGS *fzf-vim-mappings*