Hello all,
I am new to Sublime Text 3 - and, wanting to use it as a Python development environment I was delighted to find this YouTube tutorial from OdatNurd making a custom build environment with Terminus. I followed along and to my immense pleasure I was able to create not just one, but two, build environments (one where the input/output happens in the traditional bottom pane, and one where it opens a new tab. Both worked just fine!
That was yesterday.
Today I fired up ST3 to continue working and… nothing…CTRL B (I am on Linux) did nothing at all. No error message - just nothing…
The same is true for both my custom builds.
Switching to the standard Python build does work - but of course will not accept input.
Here is my build:
{
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"focus": true,
"shell_cmd": "python -u \"$file\"",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"variants":
[
{
"name": "Syntax Check",
"shell_cmd": "python -m py_compile \"${file}\"",
}
]
}
Why did it work yesterday but not today? I changed nothing.
How do I even troubleshoot this (there are no error messages).
Thanks in advance for any help…