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)