diff --git a/plugin/delimitMate.vim b/plugin/delimitMate.vim index a8bc777..84b8310 100644 --- a/plugin/delimitMate.vim +++ b/plugin/delimitMate.vim @@ -361,7 +361,7 @@ function! s:ExtraMappings() "{{{ silent! imap delimitMateDel endif " Flush the char buffer on movement keystrokes or when leaving insert mode: - for map in ['Esc', 'Left', 'Right', 'Home', 'End', 'C-Left', 'C-Right'] + for map in ['Left', 'Right', 'Home', 'End', 'C-Left', 'C-Right'] exec 'inoremap delimitMate'.map.' =Finish()<'.map.'>' if !hasmapto('delimitMate'.map, 'i') && maparg('<'.map.'>', 'i') == '' exec 'silent! imap <'.map.'> delimitMate'.map