Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,5 @@
| xit | ✓ | | | |
| xml | ✓ | | ✓ | |
| yaml | ✓ | | ✓ | `yaml-language-server` |
| yuck | ✓ | | | |
| zig | ✓ | ✓ | ✓ | `zls` |
13 changes: 13 additions & 0 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2180,3 +2180,16 @@ comment-token = "("
[[grammar]]
name = "uxntal"
source = { git = "https://github.com/Jummit/tree-sitter-uxntal", rev = "9297e95ef74380b0ad84c4fd98f91e9f6e4319e6" }

[[language]]
name = "yuck"
scope = "source.yuck"
injection-regex = "yuck"
file-types = ["yuck"]
roots = []
comment-token = ";"
indent = { tab-width = 2, unit = " " }

[[grammar]]
name = "yuck"
source = { git = "https://github.com/Philipp-M/tree-sitter-yuck", rev = "9e97da5773f82123a8c8cccf8f7e795d140ed7d1" }
66 changes: 66 additions & 0 deletions runtime/queries/yuck/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
(ERROR) @error

(line_comment) @comment

; keywords and symbols

(keyword) @keyword
(symbol) @tag
Comment thread
Philipp-M marked this conversation as resolved.

; literals

(bool_literal) @constant.builtin.boolean
(num_literal) @constant.numeric

; strings
(string_interpolation
(string_interpolation_start) @punctuation.special
(string_interpolation_end) @punctuation.special)

(escape_sequence) @constant.character.escape

(string
[
(unescaped_single_quote_string_fragment)
(unescaped_double_quote_string_fragment)
(unescaped_backtick_string_fragment)
"\""
"'"
"`"
]) @string

; operators and general punctuation

(unary_expression
operator: _ @operator)

(binary_expression
operator: _ @operator)

(ternary_expression
operator: _ @operator)

[
":"
"."
","
] @punctuation.delimiter

[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
[
":"
"."
","
] @punctuation.delimiter

; Rest (general identifiers that are not yet catched)

(index) @variable
(ident) @variable
2 changes: 2 additions & 0 deletions runtime/queries/yuck/injections.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
((line_comment) @injection.content
(#set! injection.language "comment"))