YAML support (#667)
* added submodule * remove wrong one * added highlights * use property * add indents * shallow
This commit is contained in:
parent
ce7ad2beb5
commit
1586b0eec7
5 changed files with 49 additions and 0 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -102,6 +102,10 @@
|
||||||
path = helix-syntax/languages/tree-sitter-protobuf
|
path = helix-syntax/languages/tree-sitter-protobuf
|
||||||
url = https://github.com/yusdacra/tree-sitter-protobuf.git
|
url = https://github.com/yusdacra/tree-sitter-protobuf.git
|
||||||
shallow = true
|
shallow = true
|
||||||
|
[submodule "helix-syntax/languages/tree-sitter-yaml"]
|
||||||
|
path = helix-syntax/languages/tree-sitter-yaml
|
||||||
|
url = https://github.com/ikatyang/tree-sitter-yaml
|
||||||
|
shallow = true
|
||||||
[submodule "helix-syntax/languages/tree-sitter-zig"]
|
[submodule "helix-syntax/languages/tree-sitter-zig"]
|
||||||
path = helix-syntax/languages/tree-sitter-zig
|
path = helix-syntax/languages/tree-sitter-zig
|
||||||
url = https://github.com/maxxnino/tree-sitter-zig
|
url = https://github.com/maxxnino/tree-sitter-zig
|
||||||
|
|
1
helix-syntax/languages/tree-sitter-yaml
Submodule
1
helix-syntax/languages/tree-sitter-yaml
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 0e36bed171768908f331ff7dff9d956bae016efb
|
|
@ -224,6 +224,14 @@ roots = []
|
||||||
comment-token = ";"
|
comment-token = ";"
|
||||||
indent = { tab-width = 4, unit = " " }
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "yaml"
|
||||||
|
scope = "source.yaml"
|
||||||
|
file-types = ["yml", "yaml"]
|
||||||
|
roots = []
|
||||||
|
comment-token = "#"
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
# [[language]]
|
# [[language]]
|
||||||
# name = "haskell"
|
# name = "haskell"
|
||||||
# scope = "source.haskell"
|
# scope = "source.haskell"
|
||||||
|
|
33
runtime/queries/yaml/highlights.scm
Normal file
33
runtime/queries/yaml/highlights.scm
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
(block_mapping_pair key: (_) @property)
|
||||||
|
(flow_mapping (_ key: (_) @property))
|
||||||
|
(boolean_scalar) @boolean
|
||||||
|
(null_scalar) @constant.builtin
|
||||||
|
(double_quote_scalar) @string
|
||||||
|
(single_quote_scalar) @string
|
||||||
|
(escape_sequence) @string.escape
|
||||||
|
(integer_scalar) @number
|
||||||
|
(float_scalar) @number
|
||||||
|
(comment) @comment
|
||||||
|
(anchor_name) @type
|
||||||
|
(alias_name) @type
|
||||||
|
(tag) @type
|
||||||
|
(yaml_directive) @keyword
|
||||||
|
(ERROR) @error
|
||||||
|
|
||||||
|
[
|
||||||
|
","
|
||||||
|
"-"
|
||||||
|
":"
|
||||||
|
">"
|
||||||
|
"?"
|
||||||
|
"|"
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
[
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
["*" "&"] @punctuation.special
|
3
runtime/queries/yaml/indents.toml
Normal file
3
runtime/queries/yaml/indents.toml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
indent = [
|
||||||
|
"block_mapping_pair",
|
||||||
|
]
|
Loading…
Reference in a new issue