forked from Mirrors/helix
Merge branch 'master' of https://github.com/helix-editor/helix into tree_explore
commit
20241fb256
@ -1,66 +1,107 @@
|
|||||||
|
; Errors
|
||||||
|
|
||||||
(ERROR) @error
|
(ERROR) @error
|
||||||
|
|
||||||
(line_comment) @comment
|
; Comments
|
||||||
|
|
||||||
; keywords and symbols
|
(comment) @comment
|
||||||
|
|
||||||
(keyword) @keyword
|
; Operators
|
||||||
(symbol) @tag
|
|
||||||
|
|
||||||
; literals
|
[
|
||||||
|
"+"
|
||||||
|
"-"
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"%"
|
||||||
|
"||"
|
||||||
|
"&&"
|
||||||
|
"=="
|
||||||
|
"!="
|
||||||
|
"=~"
|
||||||
|
">"
|
||||||
|
"<"
|
||||||
|
">="
|
||||||
|
"<="
|
||||||
|
"!"
|
||||||
|
"?."
|
||||||
|
"?:"
|
||||||
|
] @operator
|
||||||
|
|
||||||
(bool_literal) @constant.builtin.boolean
|
(ternary_expression
|
||||||
(num_literal) @constant.numeric
|
["?" ":"] @operator)
|
||||||
|
|
||||||
; strings
|
; Punctuation
|
||||||
(string_interpolation
|
|
||||||
(string_interpolation_start) @punctuation.special
|
[ ":" "." "," ] @punctuation.delimiter
|
||||||
(string_interpolation_end) @punctuation.special)
|
|
||||||
|
[ "{" "}" "[" "]" "(" ")" ] @punctuation.bracket
|
||||||
|
|
||||||
|
; Literals
|
||||||
|
|
||||||
|
(number (float)) @constant.numeric.float
|
||||||
|
|
||||||
|
(number (integer)) @constant.numeric.integer
|
||||||
|
|
||||||
|
(boolean) @constant.builtin.boolean
|
||||||
|
|
||||||
|
; Strings
|
||||||
|
|
||||||
(escape_sequence) @constant.character.escape
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
(string
|
(string_interpolation
|
||||||
[
|
"${" @punctuation.special
|
||||||
(unescaped_single_quote_string_fragment)
|
"}" @punctuation.special)
|
||||||
(unescaped_double_quote_string_fragment)
|
|
||||||
(unescaped_backtick_string_fragment)
|
|
||||||
"\""
|
|
||||||
"'"
|
|
||||||
"`"
|
|
||||||
]) @string
|
|
||||||
|
|
||||||
; operators and general punctuation
|
[ (string_fragment) "\"" "'" "`" ] @string
|
||||||
|
|
||||||
(unary_expression
|
; Attributes & Fields
|
||||||
operator: _ @operator)
|
|
||||||
|
|
||||||
(binary_expression
|
(keyword) @attribute
|
||||||
operator: _ @operator)
|
|
||||||
|
|
||||||
(ternary_expression
|
; Functions
|
||||||
operator: _ @operator)
|
|
||||||
|
|
||||||
[
|
(function_call
|
||||||
":"
|
name: (ident) @function)
|
||||||
"."
|
|
||||||
","
|
|
||||||
] @punctuation.delimiter
|
|
||||||
|
|
||||||
[
|
; Variables
|
||||||
"("
|
|
||||||
")"
|
|
||||||
"["
|
|
||||||
"]"
|
|
||||||
"{"
|
|
||||||
"}"
|
|
||||||
] @punctuation.bracket
|
|
||||||
[
|
|
||||||
":"
|
|
||||||
"."
|
|
||||||
","
|
|
||||||
] @punctuation.delimiter
|
|
||||||
|
|
||||||
; Rest (general identifiers that are not yet catched)
|
(ident) @variable
|
||||||
|
|
||||||
|
(array
|
||||||
|
(symbol) @variable)
|
||||||
|
|
||||||
|
; Builtin widgets
|
||||||
|
|
||||||
|
(list .
|
||||||
|
((symbol) @tag.builtin
|
||||||
|
(#match? @tag.builtin "^(box|button|calendar|centerbox|checkbox|circular-progress|color-button|color-chooser|combo-box-text|eventbox|expander|graph|image|input|label|literal|overlay|progress|revealer|scale|scroll|transform)$")))
|
||||||
|
|
||||||
|
; Keywords
|
||||||
|
|
||||||
|
; I think there's a bug in tree-sitter the anchor doesn't seem to be working, see
|
||||||
|
; https://github.com/tree-sitter/tree-sitter/pull/2107
|
||||||
|
(list .
|
||||||
|
((symbol) @keyword
|
||||||
|
(#match? @keyword "^(defwindow|defwidget|defvar|defpoll|deflisten|geometry|children|struts)$")))
|
||||||
|
|
||||||
|
(list .
|
||||||
|
((symbol) @keyword.control.import
|
||||||
|
(#eq? @keyword.control.import "include")))
|
||||||
|
|
||||||
|
; Loop
|
||||||
|
|
||||||
|
(loop_widget . "for" @keyword.control.repeat . (symbol) @variable . "in" @keyword.operator . (symbol) @variable)
|
||||||
|
|
||||||
|
(loop_widget . "for" @keyword.control.repeat . (symbol) @variable . "in" @keyword.operator)
|
||||||
|
|
||||||
|
; Tags
|
||||||
|
|
||||||
|
; TODO apply to every symbol in list? I think it should probably only be applied to the first child of the list
|
||||||
|
(list
|
||||||
|
(symbol) @tag)
|
||||||
|
|
||||||
|
; Other stuff that has not been catched by the previous queries yet
|
||||||
|
|
||||||
(index) @variable
|
|
||||||
(ident) @variable
|
(ident) @variable
|
||||||
|
(index) @variable
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
((line_comment) @injection.content
|
((comment) @injection.content
|
||||||
(#set! injection.language "comment"))
|
(#set! injection.language "comment"))
|
||||||
|
Loading…
Reference in New Issue