mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 20:37:44 +03:00
Updated tree-sitter query scopes (#896)
* updated theme scopes variable.property -> variable.field property -> variable.field * updated theme scopes * update book and themes updated book and themes to reflect scope changes * wip * update more queries * update dark_plus.toml
This commit is contained in:
parent
7a0c4322ea
commit
ee889aaa85
37 changed files with 199 additions and 165 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
(command_name) @function
|
||||
|
||||
(variable_name) @property
|
||||
(variable_name) @variable.other.member
|
||||
|
||||
[
|
||||
"case"
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
(function_definition name: (word) @function)
|
||||
|
||||
(file_descriptor) @number
|
||||
(file_descriptor) @constant.numeric.integer
|
||||
|
||||
[
|
||||
(command_substitution)
|
||||
|
|
|
@ -20,16 +20,16 @@
|
|||
] @type.builtin
|
||||
|
||||
;; Enum
|
||||
(enum_member_declaration (identifier) @variable.property)
|
||||
(enum_member_declaration (identifier) @variable.other.member)
|
||||
|
||||
;; Literals
|
||||
[
|
||||
(real_literal)
|
||||
(integer_literal)
|
||||
] @number
|
||||
] @constant.numeric.integer
|
||||
|
||||
(character_literal) @constant.character
|
||||
[
|
||||
(character_literal)
|
||||
(string_literal)
|
||||
(verbatim_string_literal)
|
||||
(interpolated_string_text)
|
||||
|
@ -40,8 +40,8 @@
|
|||
"$@\""
|
||||
] @string
|
||||
|
||||
(boolean_literal) @constant.builtin.boolean
|
||||
[
|
||||
(boolean_literal)
|
||||
(null_literal)
|
||||
(void_keyword)
|
||||
] @constant.builtin
|
||||
|
@ -98,7 +98,7 @@
|
|||
;; Keywords
|
||||
(modifier) @keyword
|
||||
(this_expression) @keyword
|
||||
(escape_sequence) @keyword
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
[
|
||||
"as"
|
||||
|
|
|
@ -60,8 +60,8 @@
|
|||
(system_lib_string) @string
|
||||
|
||||
(null) @constant
|
||||
(number_literal) @number
|
||||
(char_literal) @string
|
||||
(number_literal) @constant.numeric.integer
|
||||
(char_literal) @constant.character
|
||||
|
||||
(call_expression
|
||||
function: (identifier) @function)
|
||||
|
@ -73,7 +73,7 @@
|
|||
(preproc_function_def
|
||||
name: (identifier) @function.special)
|
||||
|
||||
(field_identifier) @property
|
||||
(field_identifier) @variable.other.member
|
||||
(statement_identifier) @label
|
||||
(type_identifier) @type
|
||||
(primitive_type) @type
|
||||
|
|
|
@ -26,11 +26,11 @@
|
|||
(pseudo_element_selector (tag_name) @attribute)
|
||||
(pseudo_class_selector (class_name) @attribute)
|
||||
|
||||
(class_name) @property
|
||||
(id_name) @property
|
||||
(namespace_name) @property
|
||||
(property_name) @property
|
||||
(feature_name) @property
|
||||
(class_name) @variable.other.member
|
||||
(id_name) @variable.other.member
|
||||
(namespace_name) @variable.other.member
|
||||
(property_name) @variable.other.member
|
||||
(feature_name) @variable.other.member
|
||||
|
||||
(attribute_name) @attribute
|
||||
|
||||
|
@ -55,8 +55,8 @@
|
|||
(string_value) @string
|
||||
(color_value) @string.special
|
||||
|
||||
(integer_value) @number
|
||||
(float_value) @number
|
||||
(integer_value) @constant.numeric.integer
|
||||
(float_value) @constant.numeric.float
|
||||
(unit) @type
|
||||
|
||||
"#" @punctuation.delimiter
|
||||
|
|
|
@ -39,13 +39,13 @@
|
|||
|
||||
; * module attribute
|
||||
(unary_operator
|
||||
operator: "@" @variable.property
|
||||
operator: "@" @variable.other.member
|
||||
operand: [
|
||||
(identifier) @variable.property
|
||||
(identifier) @variable.other.member
|
||||
(call
|
||||
target: (identifier) @variable.property)
|
||||
(boolean) @variable.property
|
||||
(nil) @variable.property
|
||||
target: (identifier) @variable.other.member)
|
||||
(boolean) @variable.other.member
|
||||
(nil) @variable.other.member
|
||||
])
|
||||
|
||||
; * capture operator
|
||||
|
@ -79,11 +79,8 @@
|
|||
(nil) @constant.builtin
|
||||
|
||||
(boolean) @constant.builtin.boolean
|
||||
|
||||
[
|
||||
(integer)
|
||||
(float)
|
||||
] @number
|
||||
(integer) @constant.numeric.integer
|
||||
(float) @constant.numeric.float
|
||||
|
||||
(alias) @type
|
||||
|
||||
|
@ -97,7 +94,7 @@
|
|||
|
||||
(interpolation "#{" @punctuation.special "}" @punctuation.special) @embedded
|
||||
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
[
|
||||
(atom)
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
(variadic_parameter_declaration (identifier) @variable.parameter)
|
||||
|
||||
(type_identifier) @type
|
||||
(field_identifier) @property
|
||||
(field_identifier) @variable.other.member
|
||||
(identifier) @variable
|
||||
(package_identifier) @variable
|
||||
|
||||
|
@ -130,13 +130,13 @@
|
|||
(rune_literal)
|
||||
] @string
|
||||
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
[
|
||||
(int_literal)
|
||||
(float_literal)
|
||||
(imaginary_literal)
|
||||
] @number
|
||||
] @constant.numeric.integer
|
||||
|
||||
[
|
||||
(true)
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
(constraint class: (class_name (type)) @class)
|
||||
(class (class_head class: (class_name (type)) @class))
|
||||
(instance (instance_head class: (class_name (type)) @class))
|
||||
(integer) @number
|
||||
(exp_literal (float)) @number
|
||||
(char) @literal
|
||||
(integer) @constant.numeric.integer
|
||||
(exp_literal (float)) @constant.numeric.float
|
||||
(char) @constant.character
|
||||
(con_unit) @literal
|
||||
(con_list) @literal
|
||||
(tycon_arrow) @operator
|
||||
|
|
|
@ -59,14 +59,15 @@
|
|||
(hex_integer_literal)
|
||||
(decimal_integer_literal)
|
||||
(octal_integer_literal)
|
||||
(decimal_floating_point_literal)
|
||||
(hex_floating_point_literal)
|
||||
] @number
|
||||
] @constant.numeric.integer
|
||||
|
||||
[
|
||||
(character_literal)
|
||||
(string_literal)
|
||||
] @string
|
||||
(decimal_floating_point_literal)
|
||||
(hex_floating_point_literal)
|
||||
] @constant.numeric.float
|
||||
|
||||
(character_literal) @constant.character
|
||||
(string_literal) @string
|
||||
|
||||
[
|
||||
(true)
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
; Properties
|
||||
;-----------
|
||||
|
||||
(property_identifier) @property
|
||||
(property_identifier) @variable.other.member
|
||||
|
||||
; Literals
|
||||
;---------
|
||||
|
@ -88,7 +88,7 @@
|
|||
] @string
|
||||
|
||||
(regex) @string.regexp
|
||||
(number) @number
|
||||
(number) @constant.numeric.integer
|
||||
|
||||
; Tokens
|
||||
;-------
|
||||
|
|
|
@ -1,9 +1,20 @@
|
|||
[
|
||||
(true)
|
||||
(false)
|
||||
] @constant.builtin.boolean
|
||||
(null) @constant.builtin
|
||||
(number) @constant.numeric
|
||||
(pair
|
||||
key: (_) @keyword)
|
||||
|
||||
(string) @string
|
||||
(escape_sequence) @constant.character.escape
|
||||
(ERROR) @error
|
||||
|
||||
(object
|
||||
"{" @escape
|
||||
(_)
|
||||
"}" @escape)
|
||||
"," @punctuation.delimiter
|
||||
[
|
||||
"["
|
||||
"]"
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.bracket
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
(field_expression
|
||||
(identifier)
|
||||
(identifier) @field .)
|
||||
(identifier) @variable.other.member .)
|
||||
|
||||
(function_definition
|
||||
name: (identifier) @function)
|
||||
|
@ -80,14 +80,14 @@
|
|||
(struct_definition
|
||||
name: (identifier) @type)
|
||||
|
||||
(number) @number
|
||||
(number) @constant.numeric.integer
|
||||
(range_expression
|
||||
(identifier) @number
|
||||
(eq? @number "end"))
|
||||
(identifier) @constant.numeric.integer
|
||||
(eq? @constant.numeric.integer "end"))
|
||||
(range_expression
|
||||
(_
|
||||
(identifier) @number
|
||||
(eq? @number "end")))
|
||||
(identifier) @constant.numeric.integer
|
||||
(eq? @constant.numeric.integer "end")))
|
||||
(coefficient_expression
|
||||
(number)
|
||||
(identifier) @constant.builtin)
|
||||
|
|
|
@ -7,9 +7,9 @@
|
|||
(date)
|
||||
(interval)
|
||||
(quantity)
|
||||
] @number
|
||||
] @constant.numeric.integer
|
||||
|
||||
((account) @field)
|
||||
((account) @variable.other.member)
|
||||
((commodity) @text.literal)
|
||||
|
||||
"include" @include
|
||||
|
|
|
@ -150,14 +150,14 @@
|
|||
(table ["{" "}"] @constructor)
|
||||
(comment) @comment
|
||||
(string) @string
|
||||
(number) @number
|
||||
(number) @constant.numeric.integer
|
||||
(label_statement) @label
|
||||
; A bit of a tricky one, this will only match field names
|
||||
(field . (identifier) @property (_))
|
||||
(field . (identifier) @variable.other.member (_))
|
||||
(shebang) @comment
|
||||
|
||||
;; Property
|
||||
(property_identifier) @property
|
||||
(property_identifier) @variable.other.member
|
||||
|
||||
;; Variable
|
||||
(identifier) @variable
|
||||
|
|
|
@ -33,16 +33,14 @@
|
|||
|
||||
(uri) @string.special.uri
|
||||
|
||||
[
|
||||
(integer)
|
||||
(float)
|
||||
] @number
|
||||
(integer) @constant.numeric.integer
|
||||
(float) @constant.numeric.float
|
||||
|
||||
(interpolation
|
||||
"${" @punctuation.special
|
||||
"}" @punctuation.special) @embedded
|
||||
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
(function
|
||||
universal: (identifier) @variable.parameter
|
||||
|
@ -66,8 +64,8 @@
|
|||
(binary
|
||||
operator: _ @operator)
|
||||
|
||||
(attr_identifier) @property
|
||||
(inherit attrs: (attrs_inherited (identifier) @property) )
|
||||
(attr_identifier) @variable.other.member
|
||||
(inherit attrs: (attrs_inherited (identifier) @variable.other.member) )
|
||||
|
||||
[
|
||||
";"
|
||||
|
|
|
@ -51,14 +51,14 @@
|
|||
; Properties
|
||||
;-----------
|
||||
|
||||
[(label_name) (field_name) (instance_variable_name)] @property
|
||||
[(label_name) (field_name) (instance_variable_name)] @variable.other.member
|
||||
|
||||
; Constants
|
||||
;----------
|
||||
|
||||
[(boolean) (unit)] @constant
|
||||
|
||||
[(number) (signed_number)] @number
|
||||
[(number) (signed_number)] @constant.numeric.integer
|
||||
|
||||
(character) @constant.character
|
||||
|
||||
|
@ -66,7 +66,7 @@
|
|||
|
||||
(quoted_string "{" @string "}" @string) @string
|
||||
|
||||
(escape_sequence) @string.escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
[
|
||||
(conversion_specification)
|
||||
|
@ -145,7 +145,7 @@
|
|||
; Attributes
|
||||
;-----------
|
||||
|
||||
(attribute_id) @property
|
||||
(attribute_id) @variable.other.member
|
||||
|
||||
; Comments
|
||||
;---------
|
||||
|
|
|
@ -30,12 +30,12 @@
|
|||
; Member
|
||||
|
||||
(property_element
|
||||
(variable_name) @property)
|
||||
(variable_name) @variable.other.member)
|
||||
|
||||
(member_access_expression
|
||||
name: (variable_name (name)) @property)
|
||||
name: (variable_name (name)) @variable.other.member)
|
||||
(member_access_expression
|
||||
name: (name) @property)
|
||||
name: (name) @variable.other.member)
|
||||
|
||||
; Variables
|
||||
|
||||
|
@ -56,10 +56,10 @@
|
|||
|
||||
(string) @string
|
||||
(heredoc) @string
|
||||
(boolean) @constant.builtin
|
||||
(boolean) @constant.builtin.boolean
|
||||
(null) @constant.builtin
|
||||
(integer) @number
|
||||
(float) @number
|
||||
(integer) @constant.numeric.integer
|
||||
(float) @constant.numeric.float
|
||||
(comment) @comment
|
||||
|
||||
"$" @operator
|
||||
|
|
|
@ -34,16 +34,14 @@
|
|||
[
|
||||
(fieldName)
|
||||
(optionName)
|
||||
] @property
|
||||
] @variable.other.member
|
||||
(enumVariantName) @type.enum.variant
|
||||
|
||||
(fullIdent) @namespace
|
||||
|
||||
[
|
||||
(intLit)
|
||||
(floatLit)
|
||||
] @number
|
||||
(boolLit) @constant.builtin
|
||||
(intLit) @constant.numeric.integer
|
||||
(floatLit) @constant.numeric.float
|
||||
(boolLit) @constant.builtin.boolean
|
||||
(strLit) @string
|
||||
|
||||
(constant) @constant
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
name: (identifier) @function)
|
||||
|
||||
(identifier) @variable
|
||||
(attribute attribute: (identifier) @property)
|
||||
(attribute attribute: (identifier) @variable.other.member)
|
||||
(type (identifier) @type)
|
||||
|
||||
; Literals
|
||||
|
@ -40,14 +40,11 @@
|
|||
(false)
|
||||
] @constant.builtin
|
||||
|
||||
[
|
||||
(integer)
|
||||
(float)
|
||||
] @number
|
||||
|
||||
(integer) @constant.numeric.integer
|
||||
(float) @constant.numeric.float
|
||||
(comment) @comment
|
||||
(string) @string
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
(interpolation
|
||||
"{" @punctuation.special
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
[
|
||||
(class_variable)
|
||||
(instance_variable)
|
||||
] @property
|
||||
] @variable.other.member
|
||||
|
||||
((identifier) @constant.builtin
|
||||
(#match? @constant.builtin "^__(FILE|LINE|ENCODING)__$"))
|
||||
|
@ -101,12 +101,12 @@
|
|||
] @string.special.symbol
|
||||
|
||||
(regex) @string.regexp
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
[
|
||||
(integer)
|
||||
(float)
|
||||
] @number
|
||||
] @constant.numeric.integer
|
||||
|
||||
[
|
||||
(nil)
|
||||
|
|
|
@ -15,15 +15,13 @@
|
|||
; Primitives
|
||||
; ---
|
||||
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
(primitive_type) @type.builtin
|
||||
(boolean_literal) @constant.builtin.boolean
|
||||
(integer_literal) @constant.numeric.integer
|
||||
(float_literal) @constant.numeric.float
|
||||
(char_literal) @constant.character
|
||||
[
|
||||
(integer_literal)
|
||||
(float_literal)
|
||||
] @number
|
||||
[
|
||||
(char_literal)
|
||||
(string_literal)
|
||||
(raw_string_literal)
|
||||
] @string
|
||||
|
@ -40,10 +38,10 @@
|
|||
(enum_variant (identifier) @type.enum.variant)
|
||||
|
||||
(field_initializer
|
||||
(field_identifier) @property)
|
||||
(field_identifier) @variable.other.member)
|
||||
(shorthand_field_initializer
|
||||
(identifier) @variable.property)
|
||||
(shorthand_field_identifier) @variable.property
|
||||
(identifier) @variable.other.member)
|
||||
(shorthand_field_identifier) @variable.other.member
|
||||
|
||||
(lifetime
|
||||
"'" @label
|
||||
|
@ -81,9 +79,24 @@
|
|||
] @punctuation.bracket)
|
||||
|
||||
; ---
|
||||
; Parameters
|
||||
; Variables
|
||||
; ---
|
||||
|
||||
(let_declaration
|
||||
pattern: [
|
||||
((identifier) @variable)
|
||||
((tuple_pattern
|
||||
(identifier) @variable))
|
||||
])
|
||||
|
||||
; It needs to be anonymous to not conflict with `call_expression` further below.
|
||||
(_
|
||||
value: (field_expression
|
||||
value: (identifier)? @variable
|
||||
field: (field_identifier) @variable.other.member))
|
||||
|
||||
(arguments
|
||||
(identifier) @variable.parameter)
|
||||
(parameter
|
||||
pattern: (identifier) @variable.parameter)
|
||||
(closure_parameters
|
||||
|
@ -336,4 +349,4 @@
|
|||
|
||||
(type_identifier) @type
|
||||
(identifier) @variable
|
||||
(field_identifier) @property
|
||||
(field_identifier) @variable.other.member
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
(#match? @_attr "^(href|src)$"))
|
||||
|
||||
(tag_name) @tag
|
||||
(attribute_name) @property
|
||||
(attribute_name) @variable.other.member
|
||||
(erroneous_end_tag_name) @error
|
||||
(comment) @comment
|
||||
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
; Properties
|
||||
;-----------
|
||||
|
||||
(bare_key) @property
|
||||
(bare_key) @variable.other.member
|
||||
(quoted_key) @string
|
||||
|
||||
; Literals
|
||||
;---------
|
||||
|
||||
(boolean) @constant.builtin
|
||||
(boolean) @constant.builtin.boolean
|
||||
(comment) @comment
|
||||
(string) @string
|
||||
(integer) @number
|
||||
(float) @number
|
||||
(integer) @constant.numeric.integer
|
||||
(float) @constant.numeric.float
|
||||
(offset_date_time) @string.special
|
||||
(local_date_time) @string.special
|
||||
(local_date) @string.special
|
||||
|
|
|
@ -35,12 +35,12 @@
|
|||
|
||||
(comment) @comment
|
||||
|
||||
(field_name) @property
|
||||
(field_name) @variable.other.member
|
||||
|
||||
(capture) @label
|
||||
|
||||
(predicate_name) @function
|
||||
|
||||
(escape_sequence) @escape
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
||||
(node_name) @variable
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
(block_mapping_pair key: (_) @property)
|
||||
(flow_mapping (_ key: (_) @property))
|
||||
(block_mapping_pair key: (_) @variable.other.member)
|
||||
(flow_mapping (_ key: (_) @variable.other.member))
|
||||
(boolean_scalar) @constant.builtin.boolean
|
||||
(null_scalar) @constant.builtin
|
||||
(double_quote_scalar) @string
|
||||
(single_quote_scalar) @string
|
||||
(escape_sequence) @string.escape
|
||||
(integer_scalar) @number
|
||||
(float_scalar) @number
|
||||
(escape_sequence) @constant.character.escape
|
||||
(integer_scalar) @constant.numeric.integer
|
||||
(float_scalar) @constant.numeric.float
|
||||
(comment) @comment
|
||||
(anchor_name) @type
|
||||
(alias_name) @type
|
||||
|
|
|
@ -14,7 +14,7 @@ parameter: (IDENTIFIER) @variable.parameter
|
|||
[
|
||||
field_member: (IDENTIFIER)
|
||||
field_access: (IDENTIFIER)
|
||||
] @variable.property
|
||||
] @variable.other.member
|
||||
|
||||
;; assume TitleCase is a type
|
||||
(
|
||||
|
@ -75,9 +75,9 @@ field_constant: (IDENTIFIER) @constant
|
|||
((BUILTINIDENTIFIER) @keyword.control.import
|
||||
(#any-of? @keyword.control.import "@import" "@cImport"))
|
||||
|
||||
(INTEGER) @number
|
||||
(INTEGER) @constant.numeric.integer
|
||||
|
||||
(FLOAT) @number
|
||||
(FLOAT) @constant.numeric.float
|
||||
|
||||
[
|
||||
(LINESTRING)
|
||||
|
@ -85,7 +85,7 @@ field_constant: (IDENTIFIER) @constant
|
|||
] @string
|
||||
|
||||
(CHAR_LITERAL) @constant.character
|
||||
(EscapeSequence) @escape
|
||||
(EscapeSequence) @constant.character.escape
|
||||
(FormatSequence) @string.special
|
||||
|
||||
[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue