You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sass syntax is correct. It seems that vim-emmet dosen't determine the filetype is sass
Even it is declared in the style tag
If it works, it will be perfect to me!
The text was updated successfully, but these errors were encountered:
Hi, thanks for reporting the sass issue. It requires both plugins to be updated.
I've updated sass syntax name in this plugin. Also, I created a PR mattn/emmet-vim#485. But it's not sure if it will get merged. So if you like, you can modify your local emmet-vim: emmet-vim/autoload/emmet.vim, about line 393
if type =~? '^css'
let type = 'css'
+ elseif type =~? '^sass'+ let type = 'sass'
elseif type =~? '^html'
let type = 'html'
When I used vim-emmet in tag <style lang="sass">
I expect when I type t20px it should be
but it is
Sass syntax is correct. It seems that vim-emmet dosen't determine the filetype is sass
Even it is declared in the style tag
If it works, it will be perfect to me!
The text was updated successfully, but these errors were encountered: