Fix attrs_order

This commit is contained in:
mattn
2013-04-06 22:41:08 +09:00
parent f1daca4fa5
commit bc5903d69c
2 changed files with 2 additions and 0 deletions

View File

@@ -153,6 +153,7 @@ function! zencoding#lang#haml#parseTag(tag)
let current.attr[name] = value
let attrs = attrs[stridx(attrs, match) + len(match):]
endwhile
let current.attrs_order = keys(current.attr)
return current
endfunction

View File

@@ -131,6 +131,7 @@ function! zencoding#lang#slim#parseTag(tag)
let current.attr[name] = value
let attrs = attrs[stridx(attrs, match) + len(match):]
endwhile
let current.attrs_order = keys(current.attr)
return current
endfunction