From 304e0e386b752ce2aae234df81e5107c9ce48efb Mon Sep 17 00:00:00 2001 From: mattn Date: Thu, 13 May 2010 20:12:08 +0900 Subject: [PATCH] add normal mode of ZenCodingExpandWord. --- zencoding.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zencoding.vim b/zencoding.vim index 314c5a0..5e8c64d 100644 --- a/zencoding.vim +++ b/zencoding.vim @@ -82,9 +82,10 @@ 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': '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_expandword_key', 'key': ';', 'plug': 'ZenCodingExpandWord', 'func': 'u:call zen_expandAbbr(1)a'}, +\ {'mode': 'n', 'var': 'user_zen_expandword_key', 'key': ',', 'plug': 'ZenCodingExpandWord', 'func': ':call zen_expandAbbr(1)'}, \ {'mode': 'i', 'var': 'user_zen_balancetaginward_key', 'key': 'd', 'plug': 'ZenCodingBalanceTagInwardInsert', 'func': ':call zen_balanceTag(1)a'}, \ {'mode': 'n', 'var': 'user_zen_balancetaginward_key', 'key': 'd', 'plug': 'ZenCodingBalanceTagInwardNormal', 'func': ':call zen_balanceTag(1)'}, \ {'mode': 'v', 'var': 'user_zen_balancetaginward_key', 'key': 'd', 'plug': 'ZenCodingBalanceTagInwardVisual', 'func': ':call zen_balanceTag(2)'},