mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add ansible-language-server for yaml (#7973)
* Update languages.toml Add ansible support to yaml. * cargo xtask docgen
This commit is contained in:
parent
93e54fa0c8
commit
bdf7937a59
2 changed files with 5 additions and 2 deletions
|
@ -179,6 +179,6 @@
|
||||||
| wren | ✓ | ✓ | ✓ | |
|
| wren | ✓ | ✓ | ✓ | |
|
||||||
| xit | ✓ | | | |
|
| xit | ✓ | | | |
|
||||||
| xml | ✓ | | ✓ | |
|
| xml | ✓ | | ✓ | |
|
||||||
| yaml | ✓ | | ✓ | `yaml-language-server` |
|
| yaml | ✓ | | ✓ | `yaml-language-server`, `ansible-language-server` |
|
||||||
| yuck | ✓ | | | |
|
| yuck | ✓ | | | |
|
||||||
| zig | ✓ | ✓ | ✓ | `zls` |
|
| zig | ✓ | ✓ | ✓ | `zls` |
|
||||||
|
|
|
@ -87,6 +87,9 @@ yaml-language-server = { command = "yaml-language-server", args = ["--stdio"] }
|
||||||
zls = { command = "zls" }
|
zls = { command = "zls" }
|
||||||
blueprint-compiler = { command = "blueprint-compiler", args = ["lsp"] }
|
blueprint-compiler = { command = "blueprint-compiler", args = ["lsp"] }
|
||||||
|
|
||||||
|
[language-server.ansible-language-server]
|
||||||
|
command = "ansible-language-server"
|
||||||
|
args = ["--stdio"]
|
||||||
|
|
||||||
[language-server.lua-language-server]
|
[language-server.lua-language-server]
|
||||||
command = "lua-language-server"
|
command = "lua-language-server"
|
||||||
|
@ -1071,7 +1074,7 @@ file-types = ["yml", "yaml"]
|
||||||
roots = []
|
roots = []
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
language-servers = [ "yaml-language-server" ]
|
language-servers = [ "yaml-language-server", "ansible-language-server" ]
|
||||||
injection-regex = "yml|yaml"
|
injection-regex = "yml|yaml"
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue