Add jsdoc parser

This commit is contained in:
Stephan Seitz 2020-07-16 12:59:35 +02:00 committed by Thomas Vigouroux
parent ee4cd7b0fd
commit bf1475df75
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -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
} }