mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 10:56:19 +04:00
Add slint-ui support
<https://slint-ui.com/> lsp: <https://github.com/slint-ui/slint/tree/HEAD/tools/lsp> tree-sitter-slint: <https://github.com/jrmoulton/tree-sitter-slint>
This commit is contained in:
parent
3e11017ade
commit
f09d2bc56b
@ -90,6 +90,7 @@
|
|||||||
| scala | ✓ | | ✓ | `metals` |
|
| scala | ✓ | | ✓ | `metals` |
|
||||||
| scheme | ✓ | | | |
|
| scheme | ✓ | | | |
|
||||||
| scss | ✓ | | | `vscode-css-language-server` |
|
| scss | ✓ | | | `vscode-css-language-server` |
|
||||||
|
| slint | ✓ | | ✓ | `slint-lsp` |
|
||||||
| solidity | ✓ | | | `solc` |
|
| solidity | ✓ | | | `solc` |
|
||||||
| sql | ✓ | | | |
|
| sql | ✓ | | | |
|
||||||
| sshclientconfig | ✓ | | | |
|
| sshclientconfig | ✓ | | | |
|
||||||
|
@ -1613,3 +1613,17 @@ indent = { tab-width = 4, unit = "\t" }
|
|||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "cue"
|
name = "cue"
|
||||||
source = { git = "https://github.com/eonpatapon/tree-sitter-cue", rev = "61843e3beebf19417e4fede4e8be4df1084317ad" }
|
source = { git = "https://github.com/eonpatapon/tree-sitter-cue", rev = "61843e3beebf19417e4fede4e8be4df1084317ad" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "slint"
|
||||||
|
scope = "source.slint"
|
||||||
|
injection-regex = "slint"
|
||||||
|
file-types = ["slint"]
|
||||||
|
roots = []
|
||||||
|
comment-token = "//"
|
||||||
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
language-server = { command = "slint-lsp", args = [] }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "slint"
|
||||||
|
source = { git = "https://github.com/jrmoulton/tree-sitter-slint", rev = "0d4dda94f96623302dfc234e06be62a5717f47da" }
|
||||||
|
125
runtime/queries/slint/highlights.scm
Normal file
125
runtime/queries/slint/highlights.scm
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
|
||||||
|
(user_type_identifier) @type
|
||||||
|
|
||||||
|
(var_identifier) @variable
|
||||||
|
|
||||||
|
(state_identifier) @variable.other.member
|
||||||
|
|
||||||
|
(var_identifier
|
||||||
|
(post_identifier) @variable)
|
||||||
|
|
||||||
|
(function_identifier) @function
|
||||||
|
|
||||||
|
(reference_identifier) @keyword.storage.modifier.ref
|
||||||
|
(visibility_modifier) @keyword.storage.modifier
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
(string) @string
|
||||||
|
(int_number) @constant.numeric
|
||||||
|
(unit_type) @type.builtin
|
||||||
|
|
||||||
|
[
|
||||||
|
"struct"
|
||||||
|
"property"
|
||||||
|
"callback"
|
||||||
|
"import"
|
||||||
|
"from"
|
||||||
|
"root"
|
||||||
|
"parent"
|
||||||
|
"this"
|
||||||
|
"for"
|
||||||
|
"in"
|
||||||
|
"if"
|
||||||
|
"else if"
|
||||||
|
"else"
|
||||||
|
"animate"
|
||||||
|
"states"
|
||||||
|
"when"
|
||||||
|
"in"
|
||||||
|
"out"
|
||||||
|
"transitions"
|
||||||
|
"global"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
"black"
|
||||||
|
"transparent"
|
||||||
|
"blue"
|
||||||
|
"ease"
|
||||||
|
"ease_in"
|
||||||
|
"ease-in"
|
||||||
|
"ease_in_out"
|
||||||
|
"ease-in-out"
|
||||||
|
"ease_out"
|
||||||
|
"ease-out"
|
||||||
|
"end"
|
||||||
|
"green"
|
||||||
|
"red"
|
||||||
|
"red"
|
||||||
|
"start"
|
||||||
|
"yellow"
|
||||||
|
"true"
|
||||||
|
"false"
|
||||||
|
] @constant.builtin
|
||||||
|
|
||||||
|
"@" @keyword
|
||||||
|
|
||||||
|
; ; Punctuation
|
||||||
|
[
|
||||||
|
","
|
||||||
|
"."
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
; ; Brackets
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
[
|
||||||
|
"angle"
|
||||||
|
"bool"
|
||||||
|
"brush"
|
||||||
|
; "color" // This causes problems
|
||||||
|
"duration"
|
||||||
|
"easing"
|
||||||
|
"float"
|
||||||
|
"image"
|
||||||
|
"int"
|
||||||
|
"length"
|
||||||
|
"percent"
|
||||||
|
"physical-length"
|
||||||
|
"physical_length"
|
||||||
|
"string"
|
||||||
|
] @type.builtin
|
||||||
|
|
||||||
|
[
|
||||||
|
":="
|
||||||
|
"!"
|
||||||
|
"-"
|
||||||
|
"+"
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"&&"
|
||||||
|
"||"
|
||||||
|
">"
|
||||||
|
"<"
|
||||||
|
">="
|
||||||
|
"<="
|
||||||
|
"="
|
||||||
|
":"
|
||||||
|
"+="
|
||||||
|
"-="
|
||||||
|
"*="
|
||||||
|
"/="
|
||||||
|
"?"
|
||||||
|
|
||||||
|
"=>"
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
(ternary_expression [":" "?"] @keyword.control.conditional)
|
29
runtime/queries/slint/indents.scm
Normal file
29
runtime/queries/slint/indents.scm
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
|
||||||
|
; [
|
||||||
|
; (struct_definition)
|
||||||
|
; (component_definition)
|
||||||
|
; ] @indent
|
||||||
|
|
||||||
|
[
|
||||||
|
(field_declaration_list_body)
|
||||||
|
(list_definition_body)
|
||||||
|
(struct_field_declaration_list_body)
|
||||||
|
] @indent
|
||||||
|
|
||||||
|
; [
|
||||||
|
; "{"
|
||||||
|
; "}"
|
||||||
|
; "("
|
||||||
|
; ")"
|
||||||
|
; (if_statement)
|
||||||
|
; "else if"
|
||||||
|
; "else"
|
||||||
|
; ] @branch
|
||||||
|
|
||||||
|
; "{" @indent
|
||||||
|
"}" @indent_end
|
||||||
|
|
||||||
|
(comment) @auto
|
||||||
|
|
||||||
|
(string) @auto
|
||||||
|
|
3
runtime/queries/slint/locals.scm
Normal file
3
runtime/queries/slint/locals.scm
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
; locals.scm
|
||||||
|
|
||||||
|
(component_definition) @local.scope
|
Loading…
Reference in New Issue
Block a user