mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -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
|
||||
- [ ] markdown
|
||||
- [x] regex (maintained by @theHamsta)
|
||||
- [ ] jsdoc
|
||||
|
||||
## User Query Extensions
|
||||
|
||||
|
|
|
|||
|
|
@ -207,6 +207,7 @@ list.nix = {
|
|||
}
|
||||
}
|
||||
|
||||
-- Parsers for injections
|
||||
list.regex = {
|
||||
install_info = {
|
||||
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 = {
|
||||
list = list
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue