vim-markdown-toc plugin

This commit is contained in:
Simon Vieille 2016-11-15 09:37:05 +01:00
parent 6125bab4e8
commit 21f0ca3f57

7
vimrc
View file

@ -62,6 +62,7 @@ Plugin 'shawncplus/phpcomplete.vim'
Plugin 'bronson/vim-trailing-whitespace' Plugin 'bronson/vim-trailing-whitespace'
Plugin 'jacoborus/tender' Plugin 'jacoborus/tender'
Plugin 'vexxor/phpdoc.vim' Plugin 'vexxor/phpdoc.vim'
Plugin 'mzlogin/vim-markdown-toc'
call vundle#end() call vundle#end()
@ -308,9 +309,9 @@ inoremap <expr><C-g> neocomplete#undo_completion()
inoremap <expr><C-l> neocomplete#complete_common_string() inoremap <expr><C-l> neocomplete#complete_common_string()
inoremap <silent> <CR> <C-r>=<SID>my_cr_function()<CR> inoremap <silent> <CR> <C-r>=<SID>my_cr_function()<CR>
inoremap <expr><TAB> inoremap <expr><TAB>
\ pumvisible() ? "\<C-n>" : \ pumvisible() ? "\<C-n>" :
\ neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : \ neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" :
\ "\<TAB>" \ "\<TAB>"
inoremap <expr><C-h> neocomplete#smart_close_popup()."\<C-h>" inoremap <expr><C-h> neocomplete#smart_close_popup()."\<C-h>"