mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
feat: Add support for cylc configuration files (#11830)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
101a74bf6e
commit
38faf74feb
6 changed files with 175 additions and 1 deletions
|
@ -3845,7 +3845,18 @@ comment-tokens = ["#", "##"]
|
|||
indent = { tab-width = 2, unit = " " }
|
||||
language-servers = ["pylsp" ]
|
||||
|
||||
|
||||
[[grammar]]
|
||||
name = "snakemake"
|
||||
source = { git = "https://github.com/osthomas/tree-sitter-snakemake", rev = "e909815acdbe37e69440261ebb1091ed52e1dec6" }
|
||||
|
||||
[[language]]
|
||||
name = "cylc"
|
||||
scope = "source.cylc"
|
||||
injection-regex = "cylc"
|
||||
file-types = ["cylc", { glob = "suite.rc" }]
|
||||
comment-tokens = "#"
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
|
||||
[[grammar]]
|
||||
name = "cylc"
|
||||
source = { git = "https://github.com/elliotfontaine/tree-sitter-cylc", rev = "30dd40d9bf23912e4aefa93eeb4c7090bda3d0f6" }
|
Loading…
Add table
Add a link
Reference in a new issue