vim-markdown-toc plugin

This commit is contained in:
Simon Vieille 2016-11-15 09:37:05 +01:00
parent 6125bab4e8
commit 21f0ca3f57
1 changed files with 4 additions and 3 deletions

7
vimrc
View File

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