Files
vim-mirror/runtime/syntax/testdir/input/python_constants_builtin_highlight.py
Rob B 632fd8bb96 runtime(python): Highlight built-in constants in Python
Also add syntax tests for those newly constants.

closes: #17788
closes: #18922

Signed-off-by: Rob B <github@0x7e.net>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2026-01-26 18:52:04 +00:00

12 lines
271 B
Python

# Built-in Constants
# https://docs.python.org/3/library/constants.html
# VIM_TEST_SETUP let g:python_constant_highlight = 1
# VIM_TEST_SETUP unlet g:python_no_builtin_highlight
test = False
test = True
test = None
test = NotImplemented
test = Ellipsis
test = __debug__