diff options
author | Blaž Hrastnik | 2021-04-09 08:42:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-04-09 09:57:46 +0000 |
commit | 4e31d1521bf9bb59f6485954d4ada16bf853c85a (patch) | |
tree | d8d05c9303701590dee6351eea693887dbab3981 /runtime/queries/toml | |
parent | c1e5733b02e4ba39b82d7b330fab0b2ded2220f2 (diff) |
Add tree-sitter queries.
Diffstat (limited to 'runtime/queries/toml')
-rw-r--r-- | runtime/queries/toml/highlights.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/runtime/queries/toml/highlights.scm b/runtime/queries/toml/highlights.scm new file mode 100644 index 00000000..e4d6966f --- /dev/null +++ b/runtime/queries/toml/highlights.scm @@ -0,0 +1,33 @@ +; Properties +;----------- + +(bare_key) @property +(quoted_key) @string + +; Literals +;--------- + +(boolean) @constant.builtin +(comment) @comment +(string) @string +(integer) @number +(float) @number +(offset_date_time) @string.special +(local_date_time) @string.special +(local_date) @string.special +(local_time) @string.special + +; Punctuation +;------------ + +"." @punctuation.delimiter +"," @punctuation.delimiter + +"=" @operator + +"[" @punctuation.bracket +"]" @punctuation.bracket +"[[" @punctuation.bracket +"]]" @punctuation.bracket +"{" @punctuation.bracket +"}" @punctuation.bracket |