Sublime自带的build system中是没有shell
选项的,直接command + b
也是没有任何反应。那我们就只能自己来写一个执行shell
的,还好Sublime支持创建Build System
。
依次点击Sublime Tools > Build System > New Build System
在弹出框中替换成以下内容:
Sublime 3.*
{
"shell_cmd": "chmod a+x $file && /bin/sh $file"
}
Sublime 2.*
{
"cmd" : ["bash", "$file"],
"selector" : "source.shell"
}
配置后保存(默认路径就行),切换我们刚才新建的build system
。Tools > Build Systems > 保存时创建的名字
。
再次按command + b
就可以直接运行shell
了。
以上教程在MAC上Sublime2、3 测试通过,其他版本请自行测试
原文链接 http://www.apkfuns.com/sublime-command-b-yun-xing-shell/
网友评论