From 916eef5f9021a8e151103f4d7a18fc434b6f1207 Mon Sep 17 00:00:00 2001 From: mattn Date: Mon, 22 Feb 2010 19:34:23 +0900 Subject: [PATCH] oops. --- zencoding.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zencoding.vim b/zencoding.vim index b468aba..b27b99e 100644 --- a/zencoding.vim +++ b/zencoding.vim @@ -1041,13 +1041,13 @@ if !exists('g:user_zen_expandword_key') let g:user_zen_expandword_key = '.' endif if !hasmapto(g:user_zen_expandword_key) - imap . ZenCodingExpandWord + exe "imap " . g:user_zen_expandword_key . " ZenCodingExpandWord" endif if !exists('g:user_zen_expandabbr_key') let g:user_zen_expandabbr_key = ',' endif if !hasmapto(g:user_zen_expandabbr_key) - imap , ZenCodingExpandAbbr + exe "imap " . g:user_zen_expandabbr_key . " ZenCodingExpandAbbr" endif function! s:zen_mergeConfig(lhs, rhs)