aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/slint/highlights.scm
diff options
context:
space:
mode:
authorErasin2022-08-08 10:04:18 +0000
committerMichael Davis2022-08-08 22:57:08 +0000
commitf09d2bc56bfb8f5865ed364de371dad571e6a92f (patch)
tree0b7a5da49ca940aa81a2c79259758cec59ed0f45 /runtime/queries/slint/highlights.scm
parent3e11017ade8b25e580b20dab5187374fa3338bae (diff)
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>
Diffstat (limited to 'runtime/queries/slint/highlights.scm')
-rw-r--r--runtime/queries/slint/highlights.scm125
1 files changed, 125 insertions, 0 deletions
diff --git a/runtime/queries/slint/highlights.scm b/runtime/queries/slint/highlights.scm
new file mode 100644
index 00000000..c7773913
--- /dev/null
+++ b/runtime/queries/slint/highlights.scm
@@ -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) \ No newline at end of file