保存时
在文件保存时执行命令。
详细信息
安装次数
- 总计 3K
- Win 1K
- Mac 717
- Linux 479
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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
Sublime Text 3的OnSave插件
在文件保存时执行命令。
安装
- 如果您已安装<强>包控制强>,只需搜索<强>保存时强>进行安装。
- 将源代码克隆到<强>Sublime Text包文件夹强>。
git clone https://github.com/wl879/SublimeOnSave.git OnSave
使用方法
在您的项目目录中创建一个“<强>.onsave强>”文件,或<强>在侧边栏文件夹上强>右键单击
# This is a example whih typescript configuration
VAR:
# defind typescript path
tsc: "/usr/local/bin/tsc"
# specify ECMAScript target version
target: --target ES5
ENV:
PATH: /usr/bin/
# optional
CONSOLE : right
LISTENER:
# typeScript compiler:
- CMD : $tsc $FILE --outDir $DIR $target
WATCH : *.ts, *.tsx
# concatenate and emit output to test.js.
- CMD : $tsc $ROOT/utils/*.ts --outFile $ROOT/test.js $target
WATCH : utils/*.ts
EXCLUDE: bad.ts
TIMEOUT : 5000
# run $ROOT/test.js, and display debug output
- CMD : node $ROOT/test.js
CONSOLE : right
# $ROOT = .onsave file directory
# $FILE = current file path
# $FILENAME = current file name
# $BASENAME = current file name, not postfix
# $DIR = current file directory
# CONSOLE options
# false = not diaplay
# name left = diaplay at left view
# name right = diaplay at right view
# name bottom = diaplay at bottom view
# WATCH options
# pattern are separated by commas,reserved words has "BUILD","NOBUILD"
# - BUILD = watch (super + b) key binding
# - NOBUILD = just watch (on save) event
# ENV options
# - CWP = changes the current working directory to the given path.
# - PATH
# - HOME
# ...