css – 在Sublime文本上自动完成SASS缺少分号?

前端之家收集整理的这篇文章主要介绍了css – 在Sublime文本上自动完成SASS缺少分号?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚开始使用SASS和Sublime Text 2并且非常享受它.但是,一些与CSS一起使用的自动完成功能不适用于SASS.
例如,在我键入的CSS文件中:float并按Tab键,它会自动添加分号

浮动:

如果我然后添加左侧和按Tab键,我也会这样做

向左飘浮;

但是,它不会在SCSS文件中执行此操作.有没有办法让这个自动完成回来,但有SASS?

解决方法

修正: https://github.com/sergeche/emmet-sublime/issues/70

For SASS Syntax,default dialect is sass,not scss (it’s important).
According to examples from 07001,closing semicolon is
not required.

But you can alter this behavIoUr: in User’s Emmet.sublime-settings
file,add the sass.propertyEnd property for preferences section,like
this:

{
    "preferences": {
        "sass.propertyEnd": ";"
    }
}
原文链接:https://www.f2er.com/css/216083.html

猜你在找的CSS相关文章