Update customization examples

This commit is contained in:
Junegunn Choi
2015-09-25 11:45:16 +09:00
parent b08b8519c6
commit d72f1361f1
2 changed files with 4 additions and 2 deletions

View File

@@ -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

View File

@@ -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*