summaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorRoberto Vidal2022-10-01 14:13:52 +0000
committerGitHub2022-10-01 14:13:52 +0000
commitcc257e9bf9a7eee7e68e04d04523a8fae10807cd (patch)
tree4a428b905706add0f7129e114a392922da8a9089 /languages.toml
parent2113b1bb2fe4d69eada555d562cbcf723201998a (diff)
Add support for webassembly text format (#4040)
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml
index ab204fcc..d7909b6d 100644
--- a/languages.toml
+++ b/languages.toml
@@ -1781,3 +1781,25 @@ language-server = { command = "bass", args = ["--lsp"] }
[[grammar]]
name = "bass"
source = { git = "https://github.com/vito/tree-sitter-bass", rev = "501133e260d768ed4e1fd7374912ed5c86d6fd90" }
+
+[[language]]
+name = "wat"
+scope = "source.wat"
+comment-token = ";;"
+file-types = ["wat"]
+roots = []
+
+[[grammar]]
+name = "wat"
+source = { git = "https://github.com/wasm-lsp/tree-sitter-wasm", rev = "2ca28a9f9d709847bf7a3de0942a84e912f59088", subpath = "wat" }
+
+[[language]]
+name = "wast"
+scope = "source.wast"
+comment-token = ";;"
+file-types = ["wast"]
+roots = []
+
+[[grammar]]
+name = "wast"
+source = { git = "https://github.com/wasm-lsp/tree-sitter-wasm", rev = "2ca28a9f9d709847bf7a3de0942a84e912f59088", subpath = "wast" }