我在使用ST2编译我的较少文件时出错。我设置了这些插件:
LESS
LESS build
SublimeOnSaveBuild
less2css
我正在尝试编译这些例子:
.generate-columns(4);
.generate-columns(@n, @i: 1) when (@i =< @n) {
.column-@{i} {
width: (@i * 100% / @n);
}
.generate-columns(@n, (@i + 1));
}
我收到了这个错误:
Expected ')' but found ' ' on line 8 in file '......\public\css\prueba.less':
[7]: }
[8]: .generate-columns(@n, (@i + 1));
----------------------------^
[9]: }
[Done - Failed]
[Finished in 0.2s with exit code -5]
该示例来自Less官方网站:http://lesscss.org/features/#loops-feature
是的,有人可以帮帮我吗?这是插件中的错误吗?非常感谢,最诚挚的问候。
答案 0 :(得分:0)
感谢七个阶段的最大化,我意识到我使用的是旧版Less的插件。最后,这些插件的一切正常:
LESS
Less2Css
我自动设置Build。如果保存你得到这个错误:“错误:less2css错误:[WinError 2]”,你可以安装node.js然后在终端“npm install less -g”中运行。如果您不想安装node.js,可以安装Windows的LESS.js(https://github.com/duncansmart/less.js-windows)并将其添加到系统路径。