Webc language support (#7290)
* feat: add webc language support * feat: add to lang-support book webc
This commit is contained in:
parent
cbe2308210
commit
df094909d1
4 changed files with 12 additions and 0 deletions
|
@ -162,6 +162,7 @@
|
||||||
| vue | ✓ | | | `vue-language-server` |
|
| vue | ✓ | | | `vue-language-server` |
|
||||||
| wast | ✓ | | | |
|
| wast | ✓ | | | |
|
||||||
| wat | ✓ | | | |
|
| wat | ✓ | | | |
|
||||||
|
| webc | ✓ | | | |
|
||||||
| wgsl | ✓ | | | `wgsl_analyzer` |
|
| wgsl | ✓ | | | `wgsl_analyzer` |
|
||||||
| wit | ✓ | | ✓ | |
|
| wit | ✓ | | ✓ | |
|
||||||
| xit | ✓ | | | |
|
| xit | ✓ | | | |
|
||||||
|
|
|
@ -2624,3 +2624,12 @@ indent = { tab-width = 2, unit = " " }
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "t32"
|
name = "t32"
|
||||||
source = { git = "https://codeberg.org/xasc/tree-sitter-t32", rev = "1dd98248b01e4a3933c1b85b58bab0875e2ba437" }
|
source = { git = "https://codeberg.org/xasc/tree-sitter-t32", rev = "1dd98248b01e4a3933c1b85b58bab0875e2ba437" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "webc"
|
||||||
|
scope = "text.html.webc"
|
||||||
|
injection-regex = "webc"
|
||||||
|
file-types = ["webc"]
|
||||||
|
roots = []
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
grammar = "html"
|
||||||
|
|
1
runtime/queries/webc/highlights.scm
Normal file
1
runtime/queries/webc/highlights.scm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
; inherits: html
|
1
runtime/queries/webc/injections.scm
Normal file
1
runtime/queries/webc/injections.scm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
; inherits: html
|
Loading…
Add table
Reference in a new issue