Created
June 1, 2024 01:41
-
-
Save magicstone1412/bf6c0da395fdf61c7cc3523930cef3f3 to your computer and use it in GitHub Desktop.
Python_Termius.sublime-build
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
{ | |
"target": "terminus_exec", | |
"cancel": "terminus_cancel_build", | |
"focus": true, | |
"timeit": true, | |
"cmd": ["python3", "-u", "$file"], | |
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", | |
"selector": "source.python", | |
"env": {"PYTHONIOENCODING": "utf-8"}, | |
"windows": { | |
"cmd": ["python", "-u", "$file"], | |
}, | |
"variants": | |
[ | |
{ | |
"name": "Syntax Check", | |
"cmd": ["python3", "-m", "py_compile", "$file"], | |
"windows": { | |
"cmd": ["py", "-m", "py_compile", "$file"], | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
STEPS: