From e8169335a500ccd56ace779292c178399c6c02cc Mon Sep 17 00:00:00 2001 From: Christopher Truett Date: Tue, 25 Mar 2014 20:03:32 -0400 Subject: [PATCH] Edited line 103 of autoload/emmet.vim to fix intelligent expansion. It was trying to call a non-existant command. --- autoload/emmet.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/emmet.vim b/autoload/emmet.vim index 1d39df3..7a11eeb 100644 --- a/autoload/emmet.vim +++ b/autoload/emmet.vim @@ -107,7 +107,7 @@ function! emmet#expandAbbrIntelligent(feedkey) if !emmet#isExpandable() return a:feedkey endif - return "\(EmmetExpandAbbr)" + return "\(emmet-expand-abbr)" endfunction function! emmet#isExpandable()