Edited line 103 of autoload/emmet.vim to fix intelligent expansion. It was trying to call a non-existant command.

This commit is contained in:
Christopher Truett
2014-03-25 20:03:32 -04:00
parent 6577e0e687
commit e8169335a5

View File

@@ -107,7 +107,7 @@ function! emmet#expandAbbrIntelligent(feedkey)
if !emmet#isExpandable()
return a:feedkey
endif
return "\<plug>(EmmetExpandAbbr)"
return "\<plug>(emmet-expand-abbr)"
endfunction
function! emmet#isExpandable()