- 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
-
-
Save tinker1987/46444b8010e10a0fc5ff2b6e794d1b57 to your computer and use it in GitHub Desktop.
Sublime Text - Tools > Build System > New Build System
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// Sublime Text 2 Build System for Javascript | |
{ | |
"cmd": ["node", "$file"], | |
"selector": "source.js" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sublime Text 2 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