mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 10:50:06 -04:00
Add jsdoc parser
This commit is contained in:
parent
ee4cd7b0fd
commit
bf1475df75
2 changed files with 9 additions and 0 deletions
|
|
@ -282,6 +282,7 @@ List of currently supported languages:
|
||||||
- [ ] nix
|
- [ ] nix
|
||||||
- [ ] markdown
|
- [ ] markdown
|
||||||
- [x] regex (maintained by @theHamsta)
|
- [x] regex (maintained by @theHamsta)
|
||||||
|
- [ ] jsdoc
|
||||||
|
|
||||||
## User Query Extensions
|
## User Query Extensions
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -207,6 +207,7 @@ list.nix = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Parsers for injections
|
||||||
list.regex = {
|
list.regex = {
|
||||||
install_info = {
|
install_info = {
|
||||||
url = "https://github.com/tree-sitter/tree-sitter-regex",
|
url = "https://github.com/tree-sitter/tree-sitter-regex",
|
||||||
|
|
@ -214,6 +215,13 @@ list.regex = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
list.jsdoc = {
|
||||||
|
install_info = {
|
||||||
|
url = "https://github.com/tree-sitter/tree-sitter-jsdoc",
|
||||||
|
files = { "src/parser.c" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
list = list
|
list = list
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue