mattn / emmet-vim

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

If the line break will not be reflected. #517

Closed nabezokodaikon closed 3 years ago

nabezokodaikon commented 3 years ago

If the line break will not be reflected.

OK

autocmd FileType
\ html,javascript,typescript,javascriptreact,typescriptreact
\ EmmetInstall

NG

autocmd FileType
\ html,
\ javascript,
\ typescript,
\ javascriptreact,
\ typescriptreact
\ EmmetInstall

I want to set up in line break, as I will be long.

mattn commented 3 years ago

This is not a bug of emmet-vim but probably you should join the tokens with backslash without space characters between commas.

nabezokodaikon commented 3 years ago

Understood. Thank you