Skip to content

Commit

Permalink
Updated the CLI and ran "generate"
Browse files Browse the repository at this point in the history
  • Loading branch information
jpt13653903 committed Oct 7, 2024
1 parent efd7886 commit 3e1df21
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 13 deletions.
15 changes: 2 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,5 @@
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js"
},
"tree-sitter": [
{
"scope": "source.vhdl",
"file-types": [
"vhd",
"vhdl"
],
"highlights": "queries/Neovim/highlights.scm",
"injection-regex": "^vhdl$"
}
]
}
}
}
37 changes: 37 additions & 0 deletions tree-sitter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"grammars": [
{
"name": "vhdl",
"camelcase": "Vhdl",
"scope": "source.vhdl",
"path": ".",
"file-types": [
"vhd",
"vhdl"
],
"highlights": "queries/Neovim/highlights.scm",
"injection-regex": "^vhdl$"
}
],
"metadata": {
"version": "1.2.0",
"license": "MIT",
"description": "VHDL grammar for tree-sitter",
"authors": [
{
"name": "John-Philip Taylor"
}
],
"links": {
"repository": "https://github.com/jpt13653903/tree-sitter-vhdl"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}

0 comments on commit 3e1df21

Please sign in to comment.