mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.41k stars 411 forks source link

Elm: bug in expanding command with list #400

Open brianvanburken opened 6 years ago

brianvanburken commented 6 years ago

The following emmet code:

ul>li.item$@-3*5

Returns this:

ul [] [ , li [ class "item7" ] [], li [ class "item6" ] [], li [ class "item5" ] [], li [ class "item4" ] [], li [ class "item3" ] [] ]

Expected:

ul [] [ li [ class "item7" ] [], li [ class "item6" ] [], li [ class "item5" ] [], li [ class "item4" ] [], li [ class "item3" ] [] ]

The problem is that the list of children starts with a comma which is an error and stops the compiler.