如何使vim syntastic读取导入的文件? 目前我的scss目录文件如下:
scss/
----custom.scss
----style.scss
----variable.scss
我将所有scss文件导入style.scss
,因此style.scss包含:
@import 'variable';
@import 'custom';
那很好,然后在我的variable.scss
中,例如我制作了一个颜色变量$primary-color: #3298df;
。然后在我的custom.scss
包含:
a, p {
color: $primary-color;
font-weight: bold;
}
vim syntastic会通知我一个错误,说Undefined variable: $primary-color
,但如果我构建scss文件并在浏览器中运行,它可以正常工作。
vim合成配置的任何线索?