This commit is contained in:
Yasuhiro Matsumoto
2015-06-26 12:48:22 +09:00
parent cda7349b65
commit 30f8568935

View File

@@ -650,7 +650,7 @@ function! emmet#expandAbbr(mode, abbr) range abort
endif
let expand = substitute(expand, '[\r\n]\s*$', '', 'g')
if emmet#useFilter(filters, 's')
let epart = substitute(expand, '[\r\n]\s\*', '', 'g')
let epart = substitute(expand, '[\r\n]\s*', '', 'g')
else
let epart = substitute(expand, '[\r\n]', "\n" . indent, 'g')
endif