我正在尝试在Atom的Snippet conf文件中添加动态代码段:“snippets.cson”。
我依靠this thread我做了以下尝试:
body:'var nowSec=${sec}';
variables:
sec:'new Date().getSeconds()'
body:'var nowSec=$sec';
variables:
sec:'new Date().getSeconds()'
body:'Array.from({length:`sec`})';
variables:
sec:'new Date().getSeconds()'
Atom在调用代码段时呈现${sec}
,$sec
或sec
;
这意味着它不会编译它,而是无法识别变量?
我还尝试了解释here的预定义变量,但它也不起作用。
language-javascript
包配置中是否缺少某些内容?