settings-User
{
"font_size": 13.0,
"ignored_packages":
[
"Vintage"
],
// Characters that are considered to separate words//去掉了-连字符的阻隔
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}`~?"
}
配置 nodejs 环境
参考博客Sublime搭建nodejs环境(windows)
注意事项
- 必须先保存文件才能运行。因为不保存,得不到相应的文件地址。这也是为什么我刚开始非常困惑怎么没有效果的原因。
- 网上教程很多说的不明白,测试无效果。
- 有错误的话不会报错,但是至少可以执行了。
原理解释
解释器,编译器,执行环境
http://www.ruanyifeng.com/blog/2014/11/compiler.html
sublime执行的原理
MAC下的最终配置文件
{
"cmd": ["node", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.js",
"shell": true,
"encoding": "utf-8",
"windows":
{
"cmd": ["taskkill /F /IM node.exe & node", "$file"]
},
"linux":
{
"cmd": ["killall node; node", "$file"]
},
"osx":
{
"cmd": [" /Users/jeffrey/.nvm/versions/node/v8.2.1/bin/node $file"]
}
}