Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For generating .wasm files for parsers
# See https://www.npmjs.com/package/web-tree-sitter
LANGUAGES = agda bash c c-sharp clojure cpp css elm go haskell html java javascript json kotlin latex markdown php python query ruby rust scala scss sparql talon tsx typescript yaml
LANGUAGES = agda bash c c-sharp clojure cpp css elm elixir go haskell html java javascript json kotlin latex markdown php python query ruby rust scala scss sparql talon tsx typescript yaml


# NOTE: Update the version number in the filepath for web-tree-sitter in package.json,
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"onLanguage:css",
"onLanguage:csharp",
"onLanguage:elm",
"onLanguage:elixir",
"onLanguage:go",
"onLanguage:haskell",
"onLanguage:html",
Expand Down Expand Up @@ -93,6 +94,7 @@
"tree-sitter-cpp": "^0.19.0",
"@elm-tooling/tree-sitter-elm": "github:elm-tooling/tree-sitter-elm#0aecfbf69f0c9bcdfada0f6f2c5398235c23949f",
"tree-sitter-go": "^0.19.0",
"tree-sitter-elixir": "github:elixir-lang/tree-sitter-elixir#b20eaa75565243c50be5e35e253d8beb58f45d56",
"tree-sitter-haskell": "github:tree-sitter/tree-sitter-haskell#d6ccd2d9c40bdec29fee0027ef04fe5ff1ae4ceb",
"tree-sitter-html": "^0.19.0",
"tree-sitter-java": "github:tree-sitter/tree-sitter-java#ac14b4b1884102839455d32543ab6d53ae089ab7",
Expand Down
1 change: 1 addition & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const languages: {
csharp: { module: "tree-sitter-c-sharp" },
css: { module: "tree-sitter-css" },
elm: { module: "tree-sitter-elm" },
elixir: { module: "tree-sitter-elixir" },
go: { module: "tree-sitter-go" },
haskell: { module: "tree-sitter-haskell" },
html: { module: "tree-sitter-html" },
Expand Down
6 changes: 6 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2444,6 +2444,12 @@ tree-sitter-css@^0.19.0:
dependencies:
nan "^2.14.1"

"tree-sitter-elixir@github:elixir-lang/tree-sitter-elixir#b20eaa75565243c50be5e35e253d8beb58f45d56":
version "0.19.0"
resolved "https://codeload.github.com/elixir-lang/tree-sitter-elixir/tar.gz/b20eaa75565243c50be5e35e253d8beb58f45d56"
dependencies:
nan "^2.15.0"

tree-sitter-go@^0.19.0:
version "0.19.1"
resolved "https://registry.yarnpkg.com/tree-sitter-go/-/tree-sitter-go-0.19.1.tgz#f23c84bff882eafa296ce2d307366e76f1f83e2d"
Expand Down