diff options
author | Novus Nota | 2024-02-04 01:09:11 +0000 |
---|---|---|
committer | GitHub | 2024-02-04 01:09:11 +0000 |
commit | d1054de3ced44903c7bdcf5886d8481eb40a948f (patch) | |
tree | c02d4845b68072a94f1daff489043f9d3f7394f8 /languages.toml | |
parent | 3f380722fbb2fd676ccc0a9dbbea4ddc4871c6ea (diff) |
feat: Add `Tact` language support (#9512)
Re-submitting
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 1f26f168..e601c20d 100644 --- a/languages.toml +++ b/languages.toml @@ -3042,3 +3042,22 @@ indent = { tab-width = 2, unit = " " } [[grammar]] name = "hocon" source = { git = "https://github.com/antosha417/tree-sitter-hocon", rev = "c390f10519ae69fdb03b3e5764f5592fb6924bcc" } + +[[language]] +name = "tact" +scope = "source.tact" +injection-regex = "tact" +file-types = ["tact"] +comment-token = "//" +indent = { tab-width = 4, unit = " " } + +[language.auto-pairs] +'"' = '"' +'{' = '}' +'(' = ')' +'<' = '>' + +[[grammar]] +name = "tact" +source = { git = "https://github.com/tact-lang/tree-sitter-tact", rev = "ec57ab29c86d632639726631fb2bb178d23e1c91" } + |