Skip to content

Instantly share code, notes, and snippets.

@michealzh
Forked from corbanb/JavaScript.sublime-build
Created September 19, 2016 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michealzh/663f6a69ed6a06b9070f072fb1db2cf2 to your computer and use it in GitHub Desktop.
Save michealzh/663f6a69ed6a06b9070f072fb1db2cf2 to your computer and use it in GitHub Desktop.
Sublime Text - Tools > Build System > New Build System

Build Tools for Sublimetext

  • Add new build systems via Tools > Build System > New Build System.
  • Save files as Language.sublime-build
  • Any commandline tool for compiling code can be used.
  • Cmd + B (OSX) will build files and send output to the Sublime Console

Example Files

Submlime Examples

Sublime Settings

Here you can see where to create new builds and to setup automatic build types. Sublime Build Menu

// Sublime Text - Build System for Javascript
{
"cmd": ["node", "$file"],
"selector": "source.js"
}
// Sublime Text - Build System for PHP
{
"cmd": ["php", "$file"],
"selector": "source.php"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment