mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
feat(lsp): add vala language support (#2243)
This commit is contained in:
parent
ea02b46c5d
commit
a8cb46680d
@ -79,6 +79,7 @@
|
|||||||
| tsx | ✓ | | | `typescript-language-server` |
|
| tsx | ✓ | | | `typescript-language-server` |
|
||||||
| twig | ✓ | | | |
|
| twig | ✓ | | | |
|
||||||
| typescript | ✓ | | ✓ | `typescript-language-server` |
|
| typescript | ✓ | | ✓ | `typescript-language-server` |
|
||||||
|
| vala | ✓ | | | `vala-language-server` |
|
||||||
| vue | ✓ | | | `vls` |
|
| vue | ✓ | | | `vls` |
|
||||||
| wgsl | ✓ | | | |
|
| wgsl | ✓ | | | |
|
||||||
| yaml | ✓ | | ✓ | `yaml-language-server` |
|
| yaml | ✓ | | ✓ | `yaml-language-server` |
|
||||||
|
@ -1235,3 +1235,17 @@ indent = { tab-width = 2, unit = " " }
|
|||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "nu"
|
name = "nu"
|
||||||
source = { git = "https://github.com/LhKipp/tree-sitter-nu", rev = "db4e990b78824c8abef3618e0f93b7fe1e8f4c0d" }
|
source = { git = "https://github.com/LhKipp/tree-sitter-nu", rev = "db4e990b78824c8abef3618e0f93b7fe1e8f4c0d" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "vala"
|
||||||
|
scope = "source.vala"
|
||||||
|
injection-regex = "vala"
|
||||||
|
file-types = ["vala", "vapi"]
|
||||||
|
roots = []
|
||||||
|
comment-token = "//"
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
language-server = { command = "vala-language-server" }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "vala"
|
||||||
|
source = { git = "https://github.com/vala-lang/tree-sitter-vala", rev = "c9eea93ba2ec4ec1485392db11945819779745b3" }
|
||||||
|
218
runtime/queries/vala/highlights.scm
Normal file
218
runtime/queries/vala/highlights.scm
Normal file
@ -0,0 +1,218 @@
|
|||||||
|
; highlights.scm
|
||||||
|
|
||||||
|
; highlight constants
|
||||||
|
(
|
||||||
|
(member_access_expression (identifier) @constant)
|
||||||
|
(#match? @constant "^[A-Z][A-Z_0-9]*$")
|
||||||
|
)
|
||||||
|
|
||||||
|
(
|
||||||
|
(member_access_expression (member_access_expression) @namespace (identifier) @constant)
|
||||||
|
(#match? @constant "^[A-Z][A-Z_0-9]*$")
|
||||||
|
)
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
(type (symbol (_)? @namespace (identifier) @type))
|
||||||
|
|
||||||
|
; highlight creation methods in object creation expressions
|
||||||
|
(
|
||||||
|
(object_creation_expression (type (symbol (symbol (symbol)? @namespace (identifier) @type) (identifier) @constructor)))
|
||||||
|
(#match? @constructor "^[a-z][a-z_0-9]*$")
|
||||||
|
)
|
||||||
|
|
||||||
|
(unqualified_type (symbol . (identifier) @type))
|
||||||
|
(unqualified_type (symbol (symbol) @namespace (identifier) @type))
|
||||||
|
|
||||||
|
(attribute) @variable.other.member
|
||||||
|
(method_declaration (symbol (symbol) @type (identifier) @function))
|
||||||
|
(method_declaration (symbol (identifier) @function))
|
||||||
|
(local_function_declaration (identifier) @function)
|
||||||
|
(destructor_declaration (identifier) @function)
|
||||||
|
(creation_method_declaration (symbol (symbol (identifier) @type) (identifier) @constructor))
|
||||||
|
(creation_method_declaration (symbol (identifier) @constructor))
|
||||||
|
(enum_declaration (symbol) @type)
|
||||||
|
(enum_value (identifier) @constant)
|
||||||
|
(errordomain_declaration (symbol) @type)
|
||||||
|
(errorcode (identifier) @constant)
|
||||||
|
(constant_declaration (identifier) @constant)
|
||||||
|
(method_call_expression (member_access_expression (identifier) @function))
|
||||||
|
(lambda_expression (identifier) @variable.parameter)
|
||||||
|
(parameter (identifier) @variable.parameter)
|
||||||
|
(property_declaration (symbol (identifier) @variable.other.member))
|
||||||
|
(field_declaration (identifier) @variable)
|
||||||
|
(identifier) @variable
|
||||||
|
[
|
||||||
|
(this_access)
|
||||||
|
(base_access)
|
||||||
|
(value_access)
|
||||||
|
] @variable.builtin
|
||||||
|
(boolean) @constant.builtin.boolean
|
||||||
|
(character) @constant.character
|
||||||
|
(integer) @constant.numeric.integer
|
||||||
|
(null) @constant.builtin
|
||||||
|
(real) @constant.numeric.float
|
||||||
|
(regex) @string.regexp
|
||||||
|
(string) @string
|
||||||
|
[
|
||||||
|
(escape_sequence)
|
||||||
|
(string_formatter)
|
||||||
|
] @string.special
|
||||||
|
(template_string) @string
|
||||||
|
(template_string_expression) @string.special
|
||||||
|
(verbatim_string) @string
|
||||||
|
[
|
||||||
|
"var"
|
||||||
|
"void"
|
||||||
|
] @type.builtin
|
||||||
|
|
||||||
|
[
|
||||||
|
"abstract"
|
||||||
|
"async"
|
||||||
|
"break"
|
||||||
|
"case"
|
||||||
|
"catch"
|
||||||
|
"class"
|
||||||
|
"const"
|
||||||
|
"construct"
|
||||||
|
"continue"
|
||||||
|
"default"
|
||||||
|
"delegate"
|
||||||
|
"do"
|
||||||
|
"dynamic"
|
||||||
|
"else"
|
||||||
|
"enum"
|
||||||
|
"errordomain"
|
||||||
|
"extern"
|
||||||
|
"finally"
|
||||||
|
"for"
|
||||||
|
"foreach"
|
||||||
|
"get"
|
||||||
|
"if"
|
||||||
|
"inline"
|
||||||
|
"interface"
|
||||||
|
"internal"
|
||||||
|
"lock"
|
||||||
|
"namespace"
|
||||||
|
"new"
|
||||||
|
"out"
|
||||||
|
"override"
|
||||||
|
"owned"
|
||||||
|
"partial"
|
||||||
|
"private"
|
||||||
|
"protected"
|
||||||
|
"public"
|
||||||
|
"ref"
|
||||||
|
"set"
|
||||||
|
"signal"
|
||||||
|
"static"
|
||||||
|
"struct"
|
||||||
|
"switch"
|
||||||
|
"throw"
|
||||||
|
"throws"
|
||||||
|
"try"
|
||||||
|
"unowned"
|
||||||
|
"virtual"
|
||||||
|
"weak"
|
||||||
|
"while"
|
||||||
|
"with"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
"and"
|
||||||
|
"as"
|
||||||
|
"delete"
|
||||||
|
"in"
|
||||||
|
"is"
|
||||||
|
"not"
|
||||||
|
"or"
|
||||||
|
"sizeof"
|
||||||
|
"typeof"
|
||||||
|
] @keyword.operator
|
||||||
|
|
||||||
|
"using" @namespace
|
||||||
|
|
||||||
|
(symbol "global::" @namespace)
|
||||||
|
|
||||||
|
(array_creation_expression "new" @keyword.operator)
|
||||||
|
(object_creation_expression "new" @keyword.operator)
|
||||||
|
(argument "out" @keyword.operator)
|
||||||
|
(argument "ref" @keyword.operator)
|
||||||
|
|
||||||
|
[
|
||||||
|
"continue"
|
||||||
|
"do"
|
||||||
|
"for"
|
||||||
|
"foreach"
|
||||||
|
"while"
|
||||||
|
] @keyword.control.repeat
|
||||||
|
|
||||||
|
[
|
||||||
|
"catch"
|
||||||
|
"finally"
|
||||||
|
"throw"
|
||||||
|
"throws"
|
||||||
|
"try"
|
||||||
|
] @keyword.control.exception
|
||||||
|
|
||||||
|
[
|
||||||
|
"return"
|
||||||
|
"yield"
|
||||||
|
] @keyword.control.return
|
||||||
|
|
||||||
|
[
|
||||||
|
"="
|
||||||
|
"=="
|
||||||
|
"+"
|
||||||
|
"+="
|
||||||
|
"-"
|
||||||
|
"-="
|
||||||
|
"++"
|
||||||
|
"--"
|
||||||
|
"|"
|
||||||
|
"|="
|
||||||
|
"&"
|
||||||
|
"&="
|
||||||
|
"^"
|
||||||
|
"^="
|
||||||
|
"/"
|
||||||
|
"/="
|
||||||
|
"*"
|
||||||
|
"*="
|
||||||
|
"%"
|
||||||
|
"%="
|
||||||
|
"<<"
|
||||||
|
"<<="
|
||||||
|
">>"
|
||||||
|
">>="
|
||||||
|
"."
|
||||||
|
"?."
|
||||||
|
"->"
|
||||||
|
"!"
|
||||||
|
"!="
|
||||||
|
"~"
|
||||||
|
"??"
|
||||||
|
"?"
|
||||||
|
":"
|
||||||
|
"<"
|
||||||
|
"<="
|
||||||
|
">"
|
||||||
|
">="
|
||||||
|
"||"
|
||||||
|
"&&"
|
||||||
|
"=>"
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
[
|
||||||
|
","
|
||||||
|
";"
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
] @punctuation.bracket
|
Loading…
Reference in New Issue
Block a user