diff options
author | johannst <stoelp@eit.uni-kl.de> | 2018-04-04 19:48:12 +0900 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2018-04-04 19:48:12 +0900 |
commit | 843bf2002cb91bac81befe35fb7fb46cfbf53703 (patch) | |
tree | cab16f12685df8f4e9437e1f7146c5601fa823b6 | |
parent | ddb7d978b83a891e16d037a060bb9bb139152fcf (diff) | |
download | dotfiles-843bf2002cb91bac81befe35fb7fb46cfbf53703.tar.gz dotfiles-843bf2002cb91bac81befe35fb7fb46cfbf53703.zip |
vimrc: removed leader mapping in inset mode, since leader is <space> key these mappings add some delay while sending <space> in insert mode
-rw-r--r-- | vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -244,7 +244,7 @@ augroup end augroup aug:FoldMarkerKeymaps autocmd! autocmd FileType * if exists('b:comment_symbol') | execute "nnoremap <buffer> <leader>fm o". b:comment_symbol . "{{{ <Esc>o" . b:comment_symbol. "}}}<Esc><Up>A" | endif - autocmd FileType * if exists('b:comment_symbol') | execute "inoremap <buffer> <leader>fm <Esc>o". b:comment_symbol . "{{{ <Esc>o" . b:comment_symbol. "}}}<Esc><Up>A" | endif + "autocmd FileType * if exists('b:comment_symbol') | execute "inoremap <buffer> <leader>fm <Esc>o". b:comment_symbol . "{{{ <Esc>o" . b:comment_symbol. "}}}<Esc><Up>A" | endif autocmd FileType * if exists('b:comment_symbol') | execute "vnoremap <buffer> <leader>fm VV'<O". b:comment_symbol . "{{{ <Esc>'>o" . b:comment_symbol. "}}}<Esc>'<<Up>A" | endif augroup end |