From 32f5d8df07c80fb92a4ccf113299c6c803291916 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Tue, 12 Feb 2013 10:02:50 -0500 Subject: [PATCH] Do not map over . Closes #118. --- plugin/delimitMate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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