mirror of https://github.com/helix-editor/helix
Drop old cairo grammar, alias to rust for now
parent
207829eefe
commit
c6d1430243
@ -1,94 +1 @@
|
|||||||
(ERROR) @error
|
; inherits: rust
|
||||||
|
|
||||||
((identifier) @constant
|
|
||||||
(#match? @constant "^[A-Z][A-Z\\d_]+$"))
|
|
||||||
((identifier_def) @constant
|
|
||||||
(#match? @constant "^[A-Z][A-Z\\d_]+$"))
|
|
||||||
|
|
||||||
((identifier) @namespace
|
|
||||||
(#match? @namespace "^[A-Z]"))
|
|
||||||
((identifier_def) @namespace
|
|
||||||
(#match? @namespace "^[A-Z]"))
|
|
||||||
|
|
||||||
(identifier "." @punctuation)
|
|
||||||
(function_call (identifier) @function)
|
|
||||||
(func (identifier_def) @function)
|
|
||||||
|
|
||||||
(string) @string
|
|
||||||
(atom_short_string) @string
|
|
||||||
|
|
||||||
(code_element_directive) @keyword.directive
|
|
||||||
"return" @keyword
|
|
||||||
|
|
||||||
(number) @constant.numeric
|
|
||||||
(atom_hex_number) @constant.numeric
|
|
||||||
|
|
||||||
(comment) @comment
|
|
||||||
|
|
||||||
"*" @special
|
|
||||||
(type) @type
|
|
||||||
|
|
||||||
[
|
|
||||||
"felt"
|
|
||||||
; "codeoffset"
|
|
||||||
] @type.builtin
|
|
||||||
|
|
||||||
[
|
|
||||||
"if"
|
|
||||||
"else"
|
|
||||||
"assert"
|
|
||||||
"with"
|
|
||||||
"with_attr"
|
|
||||||
] @keyword.control
|
|
||||||
|
|
||||||
[
|
|
||||||
"from"
|
|
||||||
"import"
|
|
||||||
"func"
|
|
||||||
"namespace"
|
|
||||||
] @keyword ; keyword.declaration
|
|
||||||
|
|
||||||
[
|
|
||||||
"let"
|
|
||||||
"const"
|
|
||||||
"local"
|
|
||||||
"struct"
|
|
||||||
"alloc_locals"
|
|
||||||
"tempvar"
|
|
||||||
] @keyword
|
|
||||||
|
|
||||||
(decorator) @attribute
|
|
||||||
|
|
||||||
[
|
|
||||||
"="
|
|
||||||
"+"
|
|
||||||
"-"
|
|
||||||
"*"
|
|
||||||
"/"
|
|
||||||
; "%"
|
|
||||||
; "!"
|
|
||||||
; ">"
|
|
||||||
; "<"
|
|
||||||
; "\\"
|
|
||||||
; "&"
|
|
||||||
; "?"
|
|
||||||
; "^"
|
|
||||||
; "~"
|
|
||||||
"=="
|
|
||||||
"!="
|
|
||||||
"new"
|
|
||||||
] @operator
|
|
||||||
|
|
||||||
[
|
|
||||||
"("
|
|
||||||
")"
|
|
||||||
"["
|
|
||||||
"]"
|
|
||||||
"{"
|
|
||||||
"}"
|
|
||||||
] @punctuation.bracket
|
|
||||||
|
|
||||||
[
|
|
||||||
","
|
|
||||||
":"
|
|
||||||
] @punctuation.delimiter
|
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
; inherits: rust
|
@ -1,5 +1,3 @@
|
|||||||
((hint) @injection.content
|
([(line_comment) (block_comment)] @injection.content
|
||||||
(#set! injection.language "python"))
|
|
||||||
|
|
||||||
((comment) @injection.content
|
|
||||||
(#set! injection.language "comment"))
|
(#set! injection.language "comment"))
|
||||||
|
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
; inherits: rust
|
@ -0,0 +1 @@
|
|||||||
|
; inherits: rust
|
Loading…
Reference in New Issue