diff options
author | Christoph Sax | 2023-06-07 23:01:25 +0000 |
---|---|---|
committer | GitHub | 2023-06-07 23:01:25 +0000 |
commit | d324feb07244e0649229b845a92f0d0b8a0ecaf4 (patch) | |
tree | fd897f928af7851a6fbd29f1449ec6912342c01d /languages.toml | |
parent | 352d1574a63b5ecd9ec7fdd8c4ae8e4eedbd4cf3 (diff) |
Add support for language t32 (#7140)
Co-authored-by: Christoph Sax <christoph.sax@mailbox.org>
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 373a8be0..28669c55 100644 --- a/languages.toml +++ b/languages.toml @@ -2605,3 +2605,16 @@ indent = { tab-width = 3, unit = " " } [[grammar]] name = "forth" source = { git = "https://github.com/alexanderbrevig/tree-sitter-forth", rev = "c6fae50a17763af827604627c0fa9e4604aaac0b" } + +[[language]] +name = "t32" +scope = "source.t32" +injection-regex = "t32" +file-types = ["cmm", "t32"] +roots = [] +comment-token = ";" +indent = { tab-width = 2, unit = " " } + +[[grammar]] +name = "t32" +source = { git = "https://codeberg.org/xasc/tree-sitter-t32", rev = "1dd98248b01e4a3933c1b85b58bab0875e2ba437" } |