Skip to content

Instantly share code, notes, and snippets.

@triztian
Last active November 16, 2020 20:13
Show Gist options
  • Save triztian/c72cf68c891ec217c96d8835a8f0121c to your computer and use it in GitHub Desktop.
Save triztian/c72cf68c891ec217c96d8835a8f0121c to your computer and use it in GitHub Desktop.
A Terminal Launch (TL) Sublime Text 3 Build System
{
"osx": {
"cmd": [
"osascript",
"-e", "tell application \"Terminal\" to activate",
"-e", "tell application \"Terminal\" \n do script \"python3 $file\"\n end tell"
]
},
"windows": {
"cmd": [
"C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\powershell.exe",
"-Command",
"{ python \"$file\" }"
]
},
"selector": "source.python"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment