mirror of https://github.com/helix-editor/helix
Update tree-sitter-swift (#3461)
parent
d6e4fd15fc
commit
254d558907
|
@ -1234,7 +1234,7 @@ language-server = { command = "sourcekit-lsp" }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "swift"
|
name = "swift"
|
||||||
source = { git = "https://github.com/Dispersia/tree-sitter-swift", rev = "e75240f89bb3bfd3396155859ae364e5c58d7377" }
|
source = { git = "https://github.com/alex-pinkus/tree-sitter-swift", rev = "77c6312c8438f4dbaa0350cec92b3d6dd3d74a66" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "erb"
|
name = "erb"
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
|
; Upstream: https://github.com/alex-pinkus/tree-sitter-swift/blob/8d2fd80e3322df51e3f70952e60d57f5d4077eb8/queries/highlights.scm
|
||||||
|
|
||||||
|
(line_string_literal
|
||||||
|
["\\(" ")"] @punctuation.special)
|
||||||
|
|
||||||
["." ";" ":" "," ] @punctuation.delimiter
|
["." ";" ":" "," ] @punctuation.delimiter
|
||||||
[ "\\(" "(" ")" "[" "]" "{" "}"] @punctuation.bracket ; TODO: "\\(" ")" in interpolations should be @punctuation.special
|
["(" ")" "[" "]" "{" "}"] @punctuation.bracket ; TODO: "\\(" ")" in interpolations should be @punctuation.special
|
||||||
|
|
||||||
; Identifiers
|
; Identifiers
|
||||||
(attribute) @variable
|
(attribute) @variable
|
||||||
|
@ -18,7 +23,7 @@
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
(function_declaration (simple_identifier) @function.method)
|
(function_declaration (simple_identifier) @function.method)
|
||||||
(function_declaration ["init" @constructor])
|
(function_declaration "init" @constructor)
|
||||||
(throws) @keyword
|
(throws) @keyword
|
||||||
"async" @keyword
|
"async" @keyword
|
||||||
(where_keyword) @keyword
|
(where_keyword) @keyword
|
||||||
|
@ -27,16 +32,21 @@
|
||||||
(type_parameter (type_identifier) @variable.parameter)
|
(type_parameter (type_identifier) @variable.parameter)
|
||||||
(inheritance_constraint (identifier (simple_identifier) @variable.parameter))
|
(inheritance_constraint (identifier (simple_identifier) @variable.parameter))
|
||||||
(equality_constraint (identifier (simple_identifier) @variable.parameter))
|
(equality_constraint (identifier (simple_identifier) @variable.parameter))
|
||||||
(non_binding_pattern bound_identifier: (simple_identifier)) @variable
|
(pattern bound_identifier: (simple_identifier)) @variable
|
||||||
|
|
||||||
[
|
[
|
||||||
"typealias"
|
"typealias"
|
||||||
"struct"
|
"struct"
|
||||||
"class"
|
"class"
|
||||||
|
"actor"
|
||||||
"enum"
|
"enum"
|
||||||
"protocol"
|
"protocol"
|
||||||
"extension"
|
"extension"
|
||||||
"indirect"
|
"indirect"
|
||||||
|
"nonisolated"
|
||||||
|
"override"
|
||||||
|
"convenience"
|
||||||
|
"required"
|
||||||
"some"
|
"some"
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
|
@ -46,12 +56,12 @@
|
||||||
(modify_specifier)
|
(modify_specifier)
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
(class_body (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @variable.other.member))))
|
(class_body (property_declaration (pattern (simple_identifier) @variable.other.member)))
|
||||||
(protocol_property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @variable.other.member)))
|
(protocol_property_declaration (pattern (simple_identifier) @variable.other.member))
|
||||||
|
|
||||||
(import_declaration ["import" @keyword.control.import])
|
(import_declaration "import" @keyword.control.import)
|
||||||
|
|
||||||
(enum_entry ["case" @keyword])
|
(enum_entry "case" @keyword)
|
||||||
|
|
||||||
; Function calls
|
; Function calls
|
||||||
(call_expression (simple_identifier) @function) ; foo()
|
(call_expression (simple_identifier) @function) ; foo()
|
||||||
|
@ -66,8 +76,8 @@
|
||||||
(diagnostic) @function.macro
|
(diagnostic) @function.macro
|
||||||
|
|
||||||
; Statements
|
; Statements
|
||||||
(for_statement ["for" @keyword.control.repeat])
|
(for_statement "for" @keyword.control.repeat)
|
||||||
(for_statement ["in" @keyword.control.repeat])
|
(for_statement "in" @keyword.control.repeat)
|
||||||
(for_statement item: (simple_identifier) @variable)
|
(for_statement item: (simple_identifier) @variable)
|
||||||
(else) @keyword
|
(else) @keyword
|
||||||
(as_operator) @keyword
|
(as_operator) @keyword
|
||||||
|
@ -75,15 +85,14 @@
|
||||||
["while" "repeat" "continue" "break"] @keyword.control.repeat
|
["while" "repeat" "continue" "break"] @keyword.control.repeat
|
||||||
|
|
||||||
["let" "var"] @keyword
|
["let" "var"] @keyword
|
||||||
(non_binding_pattern (simple_identifier) @variable)
|
|
||||||
|
|
||||||
(guard_statement ["guard" @keyword.control.conditional])
|
(guard_statement "guard" @keyword.control.conditional)
|
||||||
(if_statement ["if" @keyword.control.conditional])
|
(if_statement "if" @keyword.control.conditional)
|
||||||
(switch_statement ["switch" @keyword.control.conditional])
|
(switch_statement "switch" @keyword.control.conditional)
|
||||||
(switch_entry ["case" @keyword])
|
(switch_entry "case" @keyword)
|
||||||
(switch_entry ["fallthrough" @keyword])
|
(switch_entry "fallthrough" @keyword)
|
||||||
(switch_entry (default_keyword) @keyword)
|
(switch_entry (default_keyword) @keyword)
|
||||||
"return" @keyword.control.return
|
"return" @keyword.return
|
||||||
(ternary_expression
|
(ternary_expression
|
||||||
["?" ":"] @keyword.control.conditional)
|
["?" ":"] @keyword.control.conditional)
|
||||||
|
|
||||||
|
@ -92,8 +101,8 @@
|
||||||
(statement_label) @label
|
(statement_label) @label
|
||||||
|
|
||||||
; Comments
|
; Comments
|
||||||
(comment) @comment.line
|
(comment) @comment
|
||||||
(multiline_comment) @comment.block
|
(multiline_comment) @comment
|
||||||
|
|
||||||
; String literals
|
; String literals
|
||||||
(line_str_text) @string
|
(line_str_text) @string
|
||||||
|
@ -101,25 +110,29 @@
|
||||||
(multi_line_str_text) @string
|
(multi_line_str_text) @string
|
||||||
(raw_str_part) @string
|
(raw_str_part) @string
|
||||||
(raw_str_end_part) @string
|
(raw_str_end_part) @string
|
||||||
(raw_str_interpolation_start) @string.special
|
(raw_str_interpolation_start) @punctuation.special
|
||||||
["\"" "\"\"\""] @string
|
["\"" "\"\"\""] @string
|
||||||
|
|
||||||
; Lambda literals
|
; Lambda literals
|
||||||
(lambda_literal ["in" @keyword.operator])
|
(lambda_literal "in" @keyword.operator)
|
||||||
|
|
||||||
; Basic literals
|
; Basic literals
|
||||||
(integer_literal) @constant.numeric.integer
|
|
||||||
[
|
[
|
||||||
(hex_literal)
|
(hex_literal)
|
||||||
(oct_literal)
|
(oct_literal)
|
||||||
(bin_literal)
|
(bin_literal)
|
||||||
] @constant.numeric
|
] @constant.numeric
|
||||||
|
(integer_literal) @constant.numeric.integer
|
||||||
(real_literal) @constant.numeric.float
|
(real_literal) @constant.numeric.float
|
||||||
(boolean_literal) @constant.builtin.boolean
|
(boolean_literal) @constant.builtin.boolean
|
||||||
"nil" @variable.builtin
|
"nil" @variable.builtin
|
||||||
|
|
||||||
|
"?" @type
|
||||||
|
(type_annotation "!" @type)
|
||||||
|
|
||||||
|
(simple_identifier) @variable
|
||||||
|
|
||||||
; Operators
|
; Operators
|
||||||
(custom_operator) @operator
|
|
||||||
[
|
[
|
||||||
"try"
|
"try"
|
||||||
"try?"
|
"try?"
|
||||||
|
@ -154,5 +167,5 @@
|
||||||
|
|
||||||
"..<"
|
"..<"
|
||||||
"..."
|
"..."
|
||||||
|
(custom_operator)
|
||||||
] @operator
|
] @operator
|
||||||
|
|
||||||
|
|
|
@ -1,18 +1,7 @@
|
||||||
(import_declaration (identifier) @definition.import)
|
|
||||||
(function_declaration name: (simple_identifier) @definition.function)
|
|
||||||
|
|
||||||
; Scopes
|
|
||||||
[
|
[
|
||||||
(statements)
|
|
||||||
(for_statement)
|
|
||||||
(while_statement)
|
|
||||||
(repeat_while_statement)
|
|
||||||
(do_statement)
|
|
||||||
(if_statement)
|
|
||||||
(guard_statement)
|
|
||||||
(switch_statement)
|
|
||||||
(property_declaration)
|
|
||||||
(function_declaration)
|
(function_declaration)
|
||||||
(class_declaration)
|
] @local.scope
|
||||||
(protocol_declaration)
|
|
||||||
] @scope
|
(parameter name: (simple_identifier) @local.definition)
|
||||||
|
|
||||||
|
(simple_identifier) @local.reference
|
||||||
|
|
Loading…
Reference in New Issue