Fixes item number in group. Closes #164

This commit is contained in:
mattn
2013-10-22 13:21:32 +09:00
parent 57de05e041
commit c9b8c2edcb

View File

@@ -282,7 +282,10 @@ function! emmet#lang#html#parseIntoTree(abbr, type)
let cl = last.child
let cls = []
for c in range(n[1:])
let cls += cl
for cc in cl
let cc.basevalue = c + 1
endfor
let cls += deepcopy(cl)
endfor
let last.child = cls
endif