Sublime Forum

How about a build on save flag

#1

I find myself pressing f7 a little too often.

Would like to see the ability to add a flag to the *.sublime-build file that would allow running the build on every save of the selector file (source.js sublime-build for example that ran google’s closure compiler on save)

0 Likes

#2

Any news on this? In Sublime 2 I’d love to auto build on save, I think a lot of people would.

Many thanks,

0 Likes

#3

I’ve been overriding the default ctrl+s command just for the files i need built on save (using user keybinding settings).
ie:

    { "keys": "ctrl+s"], "command": "build",
    "context":
       
          { "key": "selector", "operator": "equal", "operand": "source.js" }
       ]},
0 Likes