chore: query formatting

This commit is contained in:
Pham Huy Hoang 2024-01-06 15:05:50 +09:00 committed by Christian Clason
parent 79975d6557
commit 57a8acf0c4
674 changed files with 18466 additions and 12648 deletions

View file

@ -1,11 +1,14 @@
(comment) @comment @spell
(afx_comment) @comment @spell
; identifiers afx
(afx_opening_element
(afx_identifier) @tag)
(afx_closing_element
(afx_identifier) @tag)
(afx_element_self_closing
(afx_identifier) @tag)
@ -15,11 +18,9 @@
(afx_text) @spell
; identifiers eel
(eel_object_path
(eel_path_identifier) @variable.builtin
(#any-of? @variable.builtin "this" "props")
)
(#any-of? @variable.builtin "this" "props"))
(eel_object_path
(eel_path_identifier) @variable)
@ -33,19 +34,16 @@
; identifiers fusion
; -----------
(path_part) @property
(meta_property) @attribute
(prototype_signature
"prototype" @keyword
)
(meta_property) @attribute
(prototype_signature
"prototype" @keyword)
(include_statement
[
"include"
] @keyword.import
(source_file) @string.special.url
)
"include" @keyword.import
(source_file) @string.special.url)
(namespace_declaration
"namespace" @keyword
@ -58,21 +56,21 @@
; ------
(afx_opening_element
[
"<"
">"
] @punctuation.bracket)
"<"
">"
] @punctuation.bracket)
(afx_closing_element
(afx_closing_element
[
"<"
">"
"/"
] @punctuation.bracket)
"<"
">"
"/"
] @punctuation.bracket)
(afx_element_self_closing
[
"<"
"/>"
"<"
"/>"
] @punctuation.bracket)
[
@ -80,41 +78,55 @@
(alias_namespace)
] @module
(namespace_declaration "=" @operator)
(assignment "=" @operator)
(copy "<" @operator)
(namespace_declaration
"=" @operator)
(assignment
"=" @operator)
(copy
"<" @operator)
(deletion) @operator
(eel_binary_expression
operator: _ @operator)
(eel_not_expression
[
"!"
"not"
"!"
"not"
] @operator)
(string) @string
(number) @number
(boolean) @boolean
(null) @constant.builtin
(value_expression
start: _ @punctuation.special
end: _ @punctuation.special
)
end: _ @punctuation.special)
[
"("
")"
"{"
"}"
"["
"]"
"("
")"
"{"
"}"
"["
"]"
] @punctuation.bracket
[
":"
"."
"?"
":"
"."
"?"
] @punctuation.delimiter
(eel_ternary_expression
["?" ":"] @keyword.conditional.ternary)
[
"?"
":"
] @keyword.conditional.ternary)

View file

@ -7,13 +7,18 @@
(eel_object)
] @indent.begin
(block
end: _ @indent.branch)
(block end: _ @indent.branch)
(value_dsl end: _ @indent.branch)
(eel_array end: _ @indent.branch)
(eel_object end: _ @indent.branch)
[
(afx_closing_element)
] @indent.branch
(value_dsl
end: _ @indent.branch)
(eel_array
end: _ @indent.branch)
(eel_object
end: _ @indent.branch)
(afx_closing_element) @indent.branch
(comment) @indent.ignore

View file

@ -1,21 +1,23 @@
;; Fusion base
; Fusion base
(block) @local.scope
(namespace_declaration
(alias_namespace) @local.definition.namespace)
(property
(path (path_part) @local.definition.field))
(path
(path_part) @local.definition.field))
(type
namespace: (package_name)? @local.definition.namespace
name: (type_name) @local.definition.type
)
name: (type_name) @local.definition.type)
;; Eel Expressions
; Eel Expressions
(eel_arrow_function) @local.scope
(eel_object) @local.scope
(eel_parameter) @local.definition.parameter
(eel_object_pair
key: (eel_property_name) @local.definition.field)