I’ll enter 2 variables and it will only print one of them? help because I love this and I want to use it
Sublime Won't Print
Please have a look at this thread. It explains why it’s not working & possible solutions.
The post above yours links to a great explanation of the problem you’re having and the possible solutions. If you’re having a problem with one of those solutions please provide more information about that.
It would be useful to know what that build system is doing if you want help fixing it. Does it give you an error when you do a build with that build system? It’s very hard to help without more detailed information.
My only guess is you want python -u
instead of py -run
.
The base scope of a Python file is source.python
, not source.py
. Try changing your selector to source.python
.
You can find out what the base scope of a file is by opening the Console and running the following:
>>> view.scope_name(0).split()[0]
'source.python'
Sublime not executing my py files