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 714
  • Linux 479
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 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 0 0 1 0 0 0 0 0 0 0 0
Mac 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 0 1 0 0 0 0 0 0 0 0 1
Linux 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 0 0 0 0 0 1 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