forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Mojo (helix-editor#10743)
* Add support for Mojo * Update grammar * Fix queries * Fix docs * Use inheritance for some files
- Loading branch information
1 parent
e76020d
commit 889bbef
Showing
7 changed files
with
272 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,250 @@ | ||
; Docstrings | ||
|
||
(expression_statement (string) @comment.block.documentation) | ||
|
||
; Imports | ||
|
||
(dotted_name | ||
(identifier)* @namespace) | ||
|
||
(aliased_import | ||
alias: (identifier) @namespace) | ||
|
||
; Builtin functions | ||
|
||
((call | ||
function: (identifier) @function.builtin) | ||
(#match? | ||
@function.builtin | ||
"^(abs|all|always_inline|any|ascii|bin|bool|breakpoint|bytearray|bytes|callable|chr|classmethod|compile|complex|constrained|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|unroll|vars|zip|__mlir_attr|__mlir_op|__mlir_type|__import__)$")) | ||
|
||
; Function calls | ||
|
||
[ | ||
"def" | ||
"lambda" | ||
"fn" | ||
] @keyword.function | ||
|
||
(call | ||
function: (attribute attribute: (identifier) @constructor) | ||
(#match? @constructor "^[A-Z]")) | ||
|
||
(call | ||
function: (identifier) @constructor | ||
(#match? @constructor "^[A-Z]")) | ||
|
||
(call | ||
function: (attribute attribute: (identifier) @function.method)) | ||
|
||
(call | ||
function: (identifier) @function) | ||
|
||
; Function definitions | ||
|
||
(function_definition | ||
name: (identifier) @constructor | ||
(#match? @constructor "^(__new__|__init__|__moveinit__|__copyinit__)$")) | ||
|
||
(function_definition | ||
name: (identifier) @function) | ||
|
||
; Decorators | ||
|
||
(decorator) @function | ||
(decorator (identifier) @function) | ||
(decorator (attribute attribute: (identifier) @function)) | ||
(decorator (call | ||
function: (attribute attribute: (identifier) @function))) | ||
|
||
; Parameters | ||
|
||
((identifier) @variable.builtin | ||
(#match? @variable.builtin "^(self|cls)$")) | ||
|
||
(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)) | ||
|
||
(lambda_parameters | ||
(identifier) @variable.parameter) | ||
|
||
; Types | ||
|
||
((identifier) @type.builtin | ||
(#match? | ||
@type.builtin | ||
"^(bool|bytes|dict|float|frozenset|int|list|set|str|tuple)$")) | ||
|
||
; 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))))) | ||
|
||
(class_definition name: (identifier) @type) | ||
(class_definition superclasses: (argument_list (identifier) @type)) | ||
|
||
; Variables | ||
|
||
((identifier) @constant | ||
(#match? @constant "^_*[A-Z][A-Z\\d_]*$")) | ||
|
||
((identifier) @type | ||
(#match? @type "^[A-Z]")) | ||
|
||
(attribute attribute: (identifier) @variable.other.member) | ||
(identifier) @variable | ||
|
||
; Literals | ||
(none) @constant.builtin | ||
[ | ||
(true) | ||
(false) | ||
] @constant.builtin.boolean | ||
|
||
(integer) @constant.numeric.integer | ||
(float) @constant.numeric.float | ||
(comment) @comment | ||
(string) @string | ||
(escape_sequence) @constant.character.escape | ||
|
||
["," "." ":" ";" (ellipsis)] @punctuation.delimiter | ||
(interpolation | ||
"{" @punctuation.special | ||
"}" @punctuation.special) @embedded | ||
["(" ")" "[" "]" "{" "}"] @punctuation.bracket | ||
|
||
[ | ||
"-" | ||
"-=" | ||
"!=" | ||
"*" | ||
"**" | ||
"**=" | ||
"*=" | ||
"/" | ||
"//" | ||
"//=" | ||
"/=" | ||
"&" | ||
"&=" | ||
"%" | ||
"%=" | ||
"^" | ||
"^=" | ||
"+" | ||
"->" | ||
"+=" | ||
"<" | ||
"<<" | ||
"<<=" | ||
"<=" | ||
"<>" | ||
"=" | ||
":=" | ||
"==" | ||
">" | ||
">=" | ||
">>" | ||
">>=" | ||
"|" | ||
"|=" | ||
"~" | ||
"@=" | ||
] @operator | ||
|
||
[ | ||
"as" | ||
"assert" | ||
"await" | ||
"from" | ||
"pass" | ||
"with" | ||
] @keyword.control | ||
|
||
[ | ||
"if" | ||
"elif" | ||
"else" | ||
"match" | ||
"case" | ||
] @keyword.control.conditional | ||
|
||
[ | ||
"while" | ||
"for" | ||
"break" | ||
"continue" | ||
] @keyword.control.repeat | ||
|
||
[ | ||
"return" | ||
"yield" | ||
] @keyword.control.return | ||
|
||
(yield "from" @keyword.control.return) | ||
|
||
[ | ||
"raise" | ||
"raises" | ||
"try" | ||
"except" | ||
"finally" | ||
] @keyword.control.exception | ||
|
||
(raise_statement "from" @keyword.control.exception) | ||
"import" @keyword.control.import | ||
|
||
(for_statement "in" @keyword.control) | ||
(for_in_clause "in" @keyword.control) | ||
|
||
[ | ||
"alias" | ||
"async" | ||
"class" | ||
"exec" | ||
"global" | ||
"nonlocal" | ||
"print" | ||
"struct" | ||
; "trait" | ||
] @keyword | ||
|
||
[ | ||
"and" | ||
"or" | ||
"not in" | ||
"in" | ||
"not" | ||
"del" | ||
"is not" | ||
"is" | ||
] @keyword.operator | ||
|
||
"var" @keyword.storage | ||
|
||
[ | ||
"borrowed" | ||
"inout" | ||
"owned" | ||
] @keyword.storage.modifier | ||
|
||
((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)$")) | ||
|
||
(ERROR) @error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
; inherits: python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
; inherits: python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
; inherits: python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
; inherits: python |