mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Add support for Xena OpenAutomation files (#10448)
Add support for .xtc/.xoa/.xpc files * XTC stand for Xena Traffic Configuration * XOA stand for Xena OpenAutomation * XPC stand for Xena Port Configuration Theses three file time seems to be the most common file extension I encountered in the wild
This commit is contained in:
parent
70459b2b66
commit
8256ca7bc3
3 changed files with 39 additions and 0 deletions
|
@ -3531,3 +3531,14 @@ comment-token = "#"
|
|||
[[grammar]]
|
||||
name = "ldif"
|
||||
source = { git = "https://github.com/kepet19/tree-sitter-ldif", rev = "0a917207f65ba3e3acfa9cda16142ee39c4c1aaa" }
|
||||
|
||||
[[language]]
|
||||
name = "xtc"
|
||||
scope = "source.xtc"
|
||||
# Accept Xena Traffic Configuration, Xena Port Configuration and Xena OpenAutomation
|
||||
file-types = [ "xtc", "xpc", "xoa" ]
|
||||
comment-token = ";"
|
||||
|
||||
[[grammar]]
|
||||
name = "xtc"
|
||||
source = { git = "https://github.com/Alexis-Lapierre/tree-sitter-xtc", rev = "7bc11b736250c45e25cfb0215db2f8393779957e" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue