diff options
author | ath3 | 2022-08-25 22:59:02 +0000 |
---|---|---|
committer | GitHub | 2022-08-25 22:59:02 +0000 |
commit | 86a8ea57bb3cb651cf9bee3fd1ae37f7e134c526 (patch) | |
tree | 37a22858b9625d4222415c64b4eeff9e6239b951 /languages.toml | |
parent | f0fb3407d2bac6523f0f293d18642393ba3c2a7c (diff) |
Pascal support (#3542)
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index 0bcc6ef2..986b927e 100644 --- a/languages.toml +++ b/languages.toml @@ -1691,3 +1691,17 @@ roots = ["edgedb.toml"] [[grammar]] name ="esdl" source = { git = "https://github.com/greym0uth/tree-sitter-esdl", rev = "b840c8a8028127e0a7c6e6c45141adade2bd75cf" } + +[[language]] +name = "pascal" +scope = "source.pascal" +injection-regex = "pascal" +file-types = ["pas", "pp", "inc", "lpr", "lfm"] +roots = [] +comment-token = "//" +indent = { tab-width = 2, unit = " " } +language-server = { command = "pasls", args = [] } + +[[grammar]] +name = "pascal" +source = { git = "https://github.com/Isopod/tree-sitter-pascal", rev = "2fd40f477d3e2794af152618ccfac8d92eb72a66" } |