ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

On Save

by wl879 ST3

Executes commands on file save.

Details

Installs

  • Total 3K
  • Win 1K
  • Mac 734
  • Linux 484
Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0
Mac 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 1 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 1 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

Source
raw.​githubusercontent.​com

OnSave plugin for Sublime Text 3

Executes commands on file save.

Installation

  • If you have Package Control installed, simply search for On Save to install.

  • Clone source code to Sublime Text packages folder.
git clone https://github.com/wl879/SublimeOnSave.git OnSave

Usage

Create a “.onsave” file in you project dir, Or right click folder at side bar

# 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
#  ...

Screenshots