Closed hpate-omicron closed 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
Thank you
This change makes the multiple class name expansion work correctly in Elm.
Becomes
Previously you would get
https://github.com/mattn/emmet-vim/issues/382