mattn / emmet-vim

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

Fix #382 - Multiple class name expansion with Elm #384

Closed hpate-omicron closed 7 years ago

hpate-omicron commented 7 years ago

This change makes the multiple class name expansion work correctly in Elm.

div.one.two.three

Becomes

    div [ class "one two three" ] []

Previously you would get

    div [ class "one.two.three" ] []

https://github.com/mattn/emmet-vim/issues/382

mattn commented 7 years ago

Thank you