构建切换器
Sublime Text 2的插件,可以轻松在构建系统之间切换。
详细信息
安装
- 总计 1K
- Win 560
- Mac 374
- Linux 253
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
BuildSwitcher (Sublime Text 2插件)
你的项目中是否有很多构建系统?这个插件可以帮助你快速执行所需的那个。
安装
建议使用PackageControll软件包。
或者你可以下载压缩包,并将它解压缩到你的~/Library/Application Support/Sublime Text 2/Packages/BuildSwitcher
。
配置
目前无法从Sublime中获取可用的构建系统列表,因此你需要明确指定你想列出的构建系统。只需将以下内容添加到你的XXX.sublime-project
文件中:
{
"settings": {
"build_switcher_systems": [
"Unit tests",
"CoffeeScript",
["My unit tests", "c:\\builds\\UI_tests.sublime-build"],
["My CoffeeScript", "/Users/me/build/coffee.sublime-build"]
]
}
}
你可以仅提供构建名称或自定义名称和构建文件路径。
如果你未指定任何构建系统,BuildSwitcher将仅执行当前选定的构建(与Sublime的默认super+b
快捷键相同行为)。
如果只指定了一个构建系统,它将无需询问即可执行。
如果指定了多个系统,你将始终收到一个弹出窗口,其中包含选项(按使用排序)。
可以使用井号“#”从构建名称中分隔构建变体。
因此,配置
“build_switcher_systems”: [“Make”, “Make#Install”, [“MyMake#Install”, “/Users/me/make.sublime-build”]]
然后选择“Make#Install”将触发“安装”变体的Make构建系统。
定义快捷键
默认情况下,“build_switcher”被映射到CMD+B
,但你很容易就可以更改它,只需将其添加到你的键盘映射首选项:
{ "keys": ["super+b"], "command": "build_switcher" }