mirror of
https://github.com/mattn/emmet-vim.git
synced 2025-12-06 18:54:27 +08:00
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