Hello, I’ve just started using Sublime Text 3 to do Python and Go coding. I’m loving the program so far. I’ve run into one head scratcher though. This file…
from random import randint
from asciimatics.screen import Screen
def demo(screen):
while True:
screen.print_at('Hello world!',
randint(0, screen.width), randint(0, screen.height),
colour=randint(0, screen.colours - 1),
bg=randint(0, screen.colours - 1))
ev = screen.get_key()
if ev in (ord('Q'), ord('q')):
return
screen.refresh()
Screen.wrapper(demo)
Just refuses to display with syntax coloring. The background is being set according to the associated .tmtheme file but the text is all gray. The code itself is valid python - it runs from the command line correctly.
I’ve got another python file file sitting in another tab, full of lovely colors. What on earth is going on?
Thanks,
Carl