From f2b2fdee43d9f58baf4fb945289f253587faa57f Mon Sep 17 00:00:00 2001 From: "jiangfriend@gmail.com" Date: Sat, 11 Jun 2011 11:12:20 +0800 Subject: [PATCH] use instead of in map keys --- plugin/auto-pairs.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/auto-pairs.vim b/plugin/auto-pairs.vim index ea03cc0..1d1eeb9 100644 --- a/plugin/auto-pairs.vim +++ b/plugin/auto-pairs.vim @@ -182,15 +182,15 @@ function! AutoPairsInit() endfor if g:AutoPairsMapBS - execute 'inoremap =AutoPairsDelete()' + execute 'inoremap AutoPairsDelete()' end if g:AutoPairsMapCR - execute 'inoremap =AutoPairsReturn()' + execute 'inoremap AutoPairsReturn()' end execute 'inoremap '.g:AutoPairsShortcutFastWrap.' =AutoPairsFastWrap()' - execute 'inoremap '.g:AutoPairsShortcutToggle.' =AutoPairsToggle()' + execute 'inoremap '.g:AutoPairsShortcutToggle.' AutoPairsToggle()' execute 'noremap '.g:AutoPairsShortcutToggle.' :call AutoPairsToggle()' " If the keys map conflict with your own settings, delete or change them if g:AutoPairsShortcuts