gh-134953: Expand theming for True/False/None (#135000)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
Stan Ulbrych 2025-09-15 15:36:17 +01:00 committed by GitHub
parent 67cc1cf68a
commit a5b9d0b8b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 0 deletions

View file

@ -196,6 +196,9 @@ def gen_colors_from_token_stream(
is_def_name = False
span = Span.from_token(token, line_lengths)
yield ColorSpan(span, "definition")
elif token.string in ("True", "False", "None"):
span = Span.from_token(token, line_lengths)
yield ColorSpan(span, "keyword_constant")
elif keyword.iskeyword(token.string):
span = Span.from_token(token, line_lengths)
yield ColorSpan(span, "keyword")