我刚开始使用SASS和Sublime Text 2并且非常享受它.但是,一些与CSS一起使用的自动完成功能不适用于SASS.
例如,在我键入的CSS文件中:float并按Tab键,它会自动添加分号
例如,在我键入的CSS文件中:float并按Tab键,它会自动添加分号
浮动:
如果我然后添加左侧和按Tab键,我也会这样做
向左飘浮;
解决方法
修正:
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": ";" } }