Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/python/highlights.scm')
-rw-r--r--runtime/queries/python/highlights.scm317
1 files changed, 120 insertions, 197 deletions
diff --git a/runtime/queries/python/highlights.scm b/runtime/queries/python/highlights.scm
index ad45d495..e9e81aae 100644
--- a/runtime/queries/python/highlights.scm
+++ b/runtime/queries/python/highlights.scm
@@ -1,16 +1,8 @@
-; -------
-; Punctuation
-; -------
-
["," "." ":" ";" (ellipsis)] @punctuation.delimiter
["(" ")" "[" "]" "{" "}"] @punctuation.bracket
(interpolation
"{" @punctuation.special
- "}" @punctuation.special)
-
-; -------
-; Operators
-; -------
+ "}" @punctuation.special) @embedded
[
"-"
@@ -51,40 +43,48 @@
"@="
] @operator
-; -------
-; Variables
-; -------
-
-(identifier) @variable
+[
+ "as"
+ "assert"
+ "await"
+ "from"
+ "pass"
-; - Member
-(attribute attribute: (identifier) @variable.other.member)
+ "with"
+] @keyword.control
-; - Parameter
-(parameters (identifier) @variable.parameter)
-(parameters (typed_parameter (identifier) @variable.parameter))
-(parameters (default_parameter name: (identifier) @variable.parameter))
-(parameters (typed_default_parameter name: (identifier) @variable.parameter))
-(parameters
- (list_splat_pattern ; *args
- (identifier) @variable.parameter))
-(parameters
- (dictionary_splat_pattern ; **kwargs
- (identifier) @variable.parameter))
+[
+ "if"
+ "elif"
+ "else"
+ "match"
+ "case"
+] @keyword.control.conditional
-(lambda_parameters
- (identifier) @variable.parameter)
+[
+ "while"
+ "for"
+ "break"
+ "continue"
+] @keyword.control.repeat
-(keyword_argument
- name: (identifier) @variable.parameter)
+[
+ "return"
+ "yield"
+] @keyword.control.return
+(yield "from" @keyword.control.return)
-; - Builtin
-((identifier) @variable.builtin
- (#any-of? @variable.builtin "self" "cls"))
+[
+ "raise"
+ "try"
+ "except"
+ "finally"
+] @keyword.control.except
+(raise_statement "from" @keyword.control.except)
+"import" @keyword.control.import
-; -------
-; Keywords
-; -------
+(for_statement "in" @keyword.control)
+(for_in_clause "in" @keyword.control)
[
"async"
@@ -95,214 +95,137 @@
"print"
"type"
] @keyword
-
-; Operators
[
"and"
"or"
"not in"
- "in" ; Has to be before loop keywords because "in" is overloaded
+ "in"
"not"
"del"
"is not"
"is"
] @keyword.operator
-; Control
+; Literals
+(none) @constant.builtin
[
- "as"
- "assert"
- "await"
- "from"
- "pass"
-
- "with"
-] @keyword.control
-
-; Conditionals
-[
- "if"
- "elif"
- "else"
- "match"
- "case"
-] @keyword.control.conditional
-
-; Exceptions
-[
- "raise"
- "try"
- "except"
- "finally"
-] @keyword.control.exception
-(raise_statement "from" @keyword.control.exception)
-
-; Functions
-[
- "def"
- "lambda"
-] @keyword.function
+ (true)
+ (false)
+] @constant.builtin.boolean
-; Import
-"import" @keyword.control.import
+(integer) @constant.numeric.integer
+(float) @constant.numeric.float
+(comment) @comment
+(string) @string
+(escape_sequence) @constant.character.escape
-; Loops
-[
- "while"
- "for"
- "break"
- "continue"
-] @keyword.control.repeat
+; Variables
-(for_statement "in" @keyword.control.repeat)
-(for_in_clause "in" @keyword.control.repeat)
+(identifier) @variable
-; Return
-[
- "return"
- "yield"
-] @keyword.control.return
-(yield "from" @keyword.control.return)
+(attribute attribute: (identifier) @variable.other.member)
-; -------
; Imports
-; -------
-
+
(dotted_name
(identifier)* @namespace)
(aliased_import
alias: (identifier) @namespace)
-; - Builtins
-(none) @constant.builtin ; Has to be before types
+; Function calls
-; -------
-; Types
-; -------
-
-((identifier) @type
- (#match? @type "^[A-Z]")) ; Has to be before constructor due to this being a more general match
+[
+ "def"
+ "lambda"
+] @keyword.function
-; In type hints make everything types to catch non-conforming identifiers
-; (e.g., datetime.datetime) and None
-(type [(identifier) (none)] @type)
-; Handle [] . and | nesting 4 levels deep
-(type
- (_ [(identifier) (none)]? @type
- (_ [(identifier) (none)]? @type
- (_ [(identifier) (none)]? @type
- (_ [(identifier) (none)]? @type)))))
+(call
+ function: (attribute attribute: (identifier) @function.method))
-; Classes
-(class_definition name: (identifier) @type)
-(class_definition superclasses: (argument_list (identifier) @type))
+(call
+ function: (identifier) @function)
-; -------
-; Functions
-; -------
+(call
+ function: (attribute attribute: (identifier) @constructor)
+ (#match? @constructor "^[A-Z]"))
+(call
+ function: (identifier) @constructor
+ (#match? @constructor "^[A-Z]"))
+
+; Builtin functions
+
+((call
+ function: (identifier) @function.builtin)
+ (#match?
+ @function.builtin
+ "^(abs|all|any|ascii|bin|bool|breakpoint|bytearray|bytes|callable|chr|classmethod|compile|complex|delattr|dict|dir|divmod|enumerate|eval|exec|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|isinstance|issubclass|iter|len|list|locals|map|max|memoryview|min|next|object|oct|open|ord|pow|print|property|range|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|vars|zip|__import__)$"))
+
+; Function definitions
(function_definition
name: (identifier) @function)
-(call
- function: (identifier) @function)
+(function_definition
+ name: (identifier) @constructor
+ (#match? @constructor "^(__new__|__init__)$"))
; Decorators
+
(decorator) @function
(decorator (identifier) @function)
(decorator (attribute attribute: (identifier) @function))
(decorator (call
function: (attribute attribute: (identifier) @function)))
-; Methods
-(call
- function: (attribute attribute: (identifier) @function.method))
+; Parameters
-; Builtin functions
-((call
- function: (identifier) @function.builtin)
- (#any-of?
- @function.builtin
- "abs" "all" "any" "ascii" "bin" "breakpoint" "bytearray" "callable" "chr"
- "classmethod" "compile" "complex" "delattr" "dir" "divmod" "enumerate"
- "eval" "exec" "filter" "format" "getattr" "globals" "hasattr" "hash" "help"
- "hex" "id" "input" "isinstance" "issubclass" "iter" "len" "locals" "map"
- "max" "memoryview" "min" "next" "object" "oct" "open" "ord" "pow" "print"
- "property" "range" "repr" "reversed" "round" "setattr" "slice" "sorted"
- "staticmethod" "sum" "super" "type" "vars" "zip" "__import__"))
-
-; Constructors
-(call
- function: (attribute attribute: (identifier) @constructor)
- (#any-of?
- @constructor
- "__new__" "__init__"))
+(parameters (identifier) @variable.parameter)
+(parameters (typed_parameter (identifier) @variable.parameter))
+(parameters (default_parameter name: (identifier) @variable.parameter))
+(parameters (typed_default_parameter name: (identifier) @variable.parameter))
-((call
- function: (identifier) @constructor)
- (#any-of?
- @constructor
- "__new__" "__init__"))
+(parameters
+ (list_splat_pattern ; *args
+ (identifier) @variable.parameter))
+(parameters
+ (dictionary_splat_pattern ; **kwargs
+ (identifier) @variable.parameter))
-(function_definition
- name: (identifier) @constructor
- (#any-of? @constructor "__new__" "__init__"))
+(lambda_parameters
+ (identifier) @variable.parameter)
-(call
- function: (attribute attribute: (identifier) @constructor)
- (#match? @constructor "^[A-Z]"))
-(call
- function: (identifier) @constructor
- (#match? @constructor "^[A-Z]"))
+; Builtins, constants, etc.
-; Builtin types
-((identifier) @type.builtin ; Has to be after functions due to broad matching
- (#any-of?
- @type.builtin
- "bool" "bytes" "dict" "float" "frozenset" "int" "list" "set" "str" "tuple"))
-
-; Builtin error types
-((identifier) @type.builtin ; Has to be after constructors due to broad matching of constructor
- (#any-of? @type.builtin
- "BaseException" "Exception" "ArithmeticError" "BufferError" "LookupError"
- "AssertionError" "AttributeError" "EOFError" "FloatingPointError" "GeneratorExit"
- "ImportError" "ModuleNotFoundError" "IndexError" "KeyError" "KeyboardInterrupt"
- "MemoryError" "NameError" "NotImplementedError" "OSError" "OverflowError"
- "RecursionError" "ReferenceError" "RuntimeError" "StopIteration" "StopAsyncIteration"
- "SyntaxError" "IndentationError" "TabError" "SystemError" "SystemExit" "TypeError"
- "UnboundLocalError" "UnicodeError" "UnicodeEncodeError" "UnicodeDecodeError"
- "UnicodeTranslateError" "ValueError" "ZeroDivisionError" "EnvironmentError"
- "IOError" "WindowsError" "BlockingIOError" "ChildProcessError" "ConnectionError"
- "BrokenPipeError" "ConnectionAbortedError" "ConnectionRefusedError"
- "ConnectionResetError" "FileExistsError" "FileNotFoundError" "InterruptedError"
- "IsADirectoryError" "NotADirectoryError" "PermissionError" "ProcessLookupError"
- "TimeoutError" "Warning" "UserWarning" "DeprecationWarning" "PendingDeprecationWarning"
- "SyntaxWarning" "RuntimeWarning" "FutureWarning" "ImportWarning" "UnicodeWarning"
- "BytesWarning" "ResourceWarning"))
-
-; -------
-; Constants
-; -------
+((identifier) @variable.builtin
+ (#match? @variable.builtin "^(self|cls)$"))
+
+((identifier) @type.builtin
+ (#match? @type.builtin
+ "^(BaseException|Exception|ArithmeticError|BufferError|LookupError|AssertionError|AttributeError|EOFError|FloatingPointError|GeneratorExit|ImportError|ModuleNotFoundError|IndexError|KeyError|KeyboardInterrupt|MemoryError|NameError|NotImplementedError|OSError|OverflowError|RecursionError|ReferenceError|RuntimeError|StopIteration|StopAsyncIteration|SyntaxError|IndentationError|TabError|SystemError|SystemExit|TypeError|UnboundLocalError|UnicodeError|UnicodeEncodeError|UnicodeDecodeError|UnicodeTranslateError|ValueError|ZeroDivisionError|EnvironmentError|IOError|WindowsError|BlockingIOError|ChildProcessError|ConnectionError|BrokenPipeError|ConnectionAbortedError|ConnectionRefusedError|ConnectionResetError|FileExistsError|FileNotFoundError|InterruptedError|IsADirectoryError|NotADirectoryError|PermissionError|ProcessLookupError|TimeoutError|Warning|UserWarning|DeprecationWarning|PendingDeprecationWarning|SyntaxWarning|RuntimeWarning|FutureWarning|ImportWarning|UnicodeWarning|BytesWarning|ResourceWarning)$"))
+
+((identifier) @type
+ (#match? @type "^[A-Z]"))
((identifier) @constant
(#match? @constant "^_*[A-Z][A-Z\\d_]*$"))
-(escape_sequence) @constant.character.escape
-
-[
- (true)
- (false)
-] @constant.builtin.boolean
+; Types
+((identifier) @type.builtin
+ (#match?
+ @type.builtin
+ "^(bool|bytes|dict|float|frozenset|int|list|set|str|tuple)$"))
-; - Numbers
-(integer) @constant.numeric.integer
-(float) @constant.numeric.float
+; In type hints make everything types to catch non-conforming identifiers
+; (e.g., datetime.datetime) and None
+(type [(identifier) (none)] @type)
+; Handle [] . and | nesting 4 levels deep
+(type
+ (_ [(identifier) (none)]? @type
+ (_ [(identifier) (none)]? @type
+ (_ [(identifier) (none)]? @type
+ (_ [(identifier) (none)]? @type)))))
-; -------
-; Other literals
-; -------
-
-(comment) @comment
-(string) @string
+(class_definition name: (identifier) @type)
+(class_definition superclasses: (argument_list (identifier) @type))