From 157bad472e72e5ff604ef7594a43c61848911d1b Mon Sep 17 00:00:00 2001 From: mattn Date: Thu, 13 May 2010 20:08:30 +0900 Subject: [PATCH] can't customize key assign of ZenCodingExpandWord. --- zencoding.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zencoding.vim b/zencoding.vim index ea5cf4f..314c5a0 100644 --- a/zencoding.vim +++ b/zencoding.vim @@ -82,7 +82,7 @@ let s:target = expand(':h') =~ '[\\/]plugin$' ? '' : '' for s:item in [ \ {'mode': 'i', 'var': 'user_zen_expandabbr_key', 'key': ',', 'plug': 'ZenCodingExpandAbbr', 'func': 'u:call zen_expandAbbr(0)a'}, -\ {'mode': 'i', 'var': 'user_zen_expandword_key', 'key': '.', 'plug': 'ZenCodingExpandWord', 'func': 'u:call zen_expandAbbr(1)a'}, +\ {'mode': 'i', 'var': 'user_zen_expandword_key', 'key': ';', 'plug': 'ZenCodingExpandWord', 'func': 'u:call zen_expandAbbr(1)a'}, \ {'mode': 'v', 'var': 'user_zen_expandabbr_key', 'key': ',', 'plug': 'ZenCodingExpandVisual', 'func': ':call zen_expandAbbr(2)'}, \ {'mode': 'n', 'var': 'user_zen_expandabbr_key', 'key': ',', 'plug': 'ZenCodingExpandNormal', 'func': ':call zen_expandAbbr(3)'}, \ {'mode': 'i', 'var': 'user_zen_balancetaginward_key', 'key': 'd', 'plug': 'ZenCodingBalanceTagInwardInsert', 'func': ':call zen_balanceTag(1)a'},