mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
feat: Add ADL language support (#10029)
* feat: Add ADL language support * removed error match & change captures to match https://docs.helix-editor.com/master/themes.html\#syntax-highlighting * fixes to grammar, highlight changes based on PR and grammar fixes
This commit is contained in:
parent
e663dafcd8
commit
0da809c981
5 changed files with 69 additions and 0 deletions
|
@ -3479,3 +3479,21 @@ language-servers = ["earthlyls"]
|
|||
[[grammar]]
|
||||
name = "earthfile"
|
||||
source = { git = "https://github.com/glehmann/tree-sitter-earthfile", rev = "2a6ab191f5f962562e495a818aa4e7f45f8a556a" }
|
||||
|
||||
[[language]]
|
||||
name = "adl"
|
||||
scope = "source.adl"
|
||||
injection-regex = "adl"
|
||||
file-types = ["adl"]
|
||||
roots = []
|
||||
comment-token = "//"
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
||||
[language.auto-pairs]
|
||||
'"' = '"'
|
||||
'{' = '}'
|
||||
'<' = '>'
|
||||
|
||||
[[grammar]]
|
||||
name = "adl"
|
||||
source = { git = "https://github.com/adl-lang/tree-sitter-adl", rev = "2787d04beadfbe154d3f2da6e98dc45a1b134bbf" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue