Skip to content
Draft
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
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "parse-tree",
"displayName": "Parse tree",
"description": "Access document syntax using tree-sitter",
"version": "0.43.0",
"version": "0.44.0",
"publisher": "pokey",
"repository": {
"type": "git",
Expand Down Expand Up @@ -69,7 +69,8 @@
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:xml",
"onLanguage:yaml"
"onLanguage:yaml",
"onLanguage:zig"
],
"main": "./out/extension.js",
"capabilities": {
Expand All @@ -92,7 +93,7 @@
"publish": "vsce publish patch"
},
"devDependencies": {
"@cursorless/tree-sitter-wasms": "0.6.0",
"@cursorless/tree-sitter-wasms": "0.7.0",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/vscode": "~1.58.0",
Expand Down
1 change: 1 addition & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const languages: Record<string, Language | undefined> = {
typescriptreact: { module: "tree-sitter-tsx" },
xml: { module: "tree-sitter-xml" },
yaml: { module: "tree-sitter-yaml" },
zig: { module: "tree-sitter-zig" },
};

// For some reason this crashes if we put it inside activate
Expand Down