Commit 70978d4 1 parent 13dd92f commit 70978d4 Copy full SHA for 70978d4
File tree 3 files changed +35
-0
lines changed
3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 60
60
| jsonnet | ✓ | | | ` jsonnet-language-server ` |
61
61
| jsx | ✓ | ✓ | ✓ | ` typescript-language-server ` |
62
62
| julia | ✓ | | | ` julia ` |
63
+ | kdl | ✓ | | | |
63
64
| kotlin | ✓ | | | ` kotlin-language-server ` |
64
65
| latex | ✓ | ✓ | | ` texlab ` |
65
66
| lean | ✓ | | | ` lean ` |
Original file line number Diff line number Diff line change @@ -1885,3 +1885,15 @@ grammar = "vhs"
1885
1885
[[grammar ]]
1886
1886
name = " vhs"
1887
1887
source = { git = " https://github.com/charmbracelet/tree-sitter-vhs" , rev = " c6d81f34c011c29ee86dd73b45a8ecc9f2e2bdaf" }
1888
+
1889
+ [[language ]]
1890
+ name = " kdl"
1891
+ scope = " source.kdl"
1892
+ file-types = [" kdl" ]
1893
+ roots = []
1894
+ comment-token = " //"
1895
+ injection-regex = " kdl"
1896
+
1897
+ [[grammar ]]
1898
+ name = " kdl"
1899
+ source = { git = " https://github.com/Unoqwy/tree-sitter-kdl" , rev = " e1cd292c6d15df6610484e1d4b5c987ecad52373" }
Original file line number Diff line number Diff line change
1
+ (comment) @comment
2
+ (single_line_comment) @comment
3
+
4
+ (node
5
+ name: (identifier) @function)
6
+ (prop (identifier) @attribute)
7
+ (type) @type
8
+
9
+ (bare_identifier) @variable.other.member
10
+
11
+ (keyword) @keyword
12
+
13
+ (string) @string
14
+ (number) @constant.numeric
15
+ (boolean) @constant.builtin.boolean
16
+
17
+ " ." @punctuation.delimiter
18
+
19
+ " =" @operator
20
+
21
+ " {" @punctuation.bracket
22
+ " }" @punctuation.bracket
You can’t perform that action at this time.
0 commit comments