Custom expands should be expanded in later

Fixes #272
This commit is contained in:
Yasuhiro Matsumoto
2016-05-10 11:11:41 +09:00
parent 05bfff176b
commit e2be3aa391
2 changed files with 26 additions and 9 deletions

View File

@@ -177,7 +177,7 @@ function! emmet#mergeConfig(lhs, rhs) abort
endfunction
function! emmet#newNode() abort
return { 'name': '', 'attr': {}, 'child': [], 'snippet': '', 'basevalue': 0, 'basedirect': 1, 'multiplier': 1, 'parent': {}, 'value': '', 'pos': 0, 'important': 0, 'attrs_order': ['id', 'class'] }
return { 'name': '', 'attr': {}, 'child': [], 'snippet': '', 'basevalue': 0, 'basedirect': 1, 'multiplier': 1, 'parent': {}, 'value': '', 'pos': 0, 'important': 0, 'attrs_order': ['id', 'class'], 'block': 0 }
endfunction
function! s:itemno(itemno, current) abort