Skip to content

Commit

Permalink
div[foo bar] should be expanded into <div foo="" bar=""></div>. close #…
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Jul 18, 2014
1 parent dcf247f commit 2b94508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/emmet/lang/html.vim
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ function! emmet#lang#html#parseIntoTree(abbr, type)
if len(ks) > 0
let current.attr[ks[0]] = atts
else
let current.attr[atts] = function('emmet#types#true')
let current.attr[atts] = ""
endif
else
while len(atts)
Expand Down

0 comments on commit 2b94508

Please sign in to comment.