Code restructuring

This commit is contained in:
Junegunn Choi
2015-09-06 00:58:45 +09:00
parent 46c0e47b02
commit d2b235262e
5 changed files with 835 additions and 731 deletions

View File

@@ -97,6 +97,9 @@ COMMANDS *fzf-vim-commands*
" Default fzf layout
let g:fzf_layout = { 'down': '40%' }
" Advanced customization using autoload functions
autocmd VimEnter * command! Colors call fzf#vim#colors({'left': '15%'})
<
MAPPINGS *fzf-vim-mappings*
@@ -121,6 +124,9 @@ MAPPINGS *fzf-vim-mappings*
imap <c-x><c-f> <plug>(fzf-complete-path)
imap <c-x><c-j> <plug>(fzf-complete-file-ag)
imap <c-x><c-l> <plug>(fzf-complete-line)
" Advanced customization using autoload functions
inoremap <expr> <c-x><c-k> fzf#vim#complete#word({'left': '15%'})
<
< Completion helper >_________________________________________________________~