-
-
Save tinker1987/46444b8010e10a0fc5ff2b6e794d1b57 to your computer and use it in GitHub Desktop.
Revisions
-
corbanb revised this gist
Sep 24, 2014 . 2 changed files with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ // Sublime Text - 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ // Sublime Text - Build System for PHP { "cmd": ["php", "$file"], "selector": "source.php" -
corbanb revised this gist
Sep 24, 2014 . 1 changed file with 9 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,3 +5,12 @@ - Any commandline tool for compiling code can be used. - Cmd + B (OSX) will build files and send output to the Sublime Console ## Example Files  ## Sublime Settings Here you can see where to **create new builds** and to setup **automatic build types**.  -
corbanb revised this gist
Sep 24, 2014 . No changes.There are no files selected for viewing
-
corbanb revised this gist
Sep 24, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,3 +4,4 @@ - 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 -
corbanb revised this gist
Sep 24, 2014 . 3 changed files with 12 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ // 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ // Sublime Text 2 Build System for PHP { "cmd": ["php", "$file"], "selector": "source.php" } 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ # 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 -
corbanb created this gist
Sep 24, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ // Sublime Text 2 Build System using Node.js { "cmd": ["node", "$file"], "selector": "source.js" }