Sublime Forum

Sublime Won't Print

#1

I’ll enter 2 variables and it will only print one of them? help because I love this and I want to use it

0 Likes

#2

Please have a look at this thread. It explains why it’s not working & possible solutions.

2 Likes

#3

I am still having this issue

0 Likes

#4

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.

0 Likes

#5

what should I change

0 Likes

#6

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.

0 Likes

#7

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'
0 Likes

Sublime not executing my py files