mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
chore(help)!: renamed to vimdoc
This commit is contained in:
parent
2f3113ff6d
commit
93fa5df0a3
5 changed files with 14 additions and 13 deletions
|
|
@ -106,7 +106,7 @@ All modules are disabled by default and need to be activated explicitly in your
|
|||
```lua
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
-- A list of parser names, or "all" (the five listed parsers should always be installed)
|
||||
ensure_installed = { "c", "lua", "vim", "help", "query" },
|
||||
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
|
||||
|
||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||
sync_install = false,
|
||||
|
|
@ -241,7 +241,6 @@ We are looking for maintainers to add more parsers and to write query files for
|
|||
- [ ] [haskell](https://github.com/tree-sitter/tree-sitter-haskell)
|
||||
- [x] [hcl](https://github.com/MichaHoffmann/tree-sitter-hcl) (maintained by @MichaHoffmann)
|
||||
- [x] [heex](https://github.com/connorlay/tree-sitter-heex) (maintained by @connorlay)
|
||||
- [x] [help](https://github.com/neovim/tree-sitter-vimdoc) (maintained by @vigoux)
|
||||
- [x] [hjson](https://github.com/winston0410/tree-sitter-hjson) (maintained by @winston0410)
|
||||
- [x] [hlsl](https://github.com/theHamsta/tree-sitter-hlsl) (maintained by @theHamsta)
|
||||
- [x] [hocon](https://github.com/antosha417/tree-sitter-hocon) (maintained by @antosha417)
|
||||
|
|
@ -348,6 +347,7 @@ We are looking for maintainers to add more parsers and to write query files for
|
|||
- [x] [verilog](https://github.com/tree-sitter/tree-sitter-verilog) (maintained by @zegervdv)
|
||||
- [x] [vhs](https://github.com/charmbracelet/tree-sitter-vhs) (maintained by @caarlos0)
|
||||
- [x] [vim](https://github.com/vigoux/tree-sitter-viml) (maintained by @vigoux)
|
||||
- [x] [vimdoc](https://github.com/neovim/tree-sitter-vimdoc) (maintained by @clason)
|
||||
- [x] [vue](https://github.com/ikatyang/tree-sitter-vue) (maintained by @WhyNotHugo)
|
||||
- [x] [wgsl](https://github.com/szebniok/tree-sitter-wgsl) (maintained by @szebniok)
|
||||
- [x] [wgsl_bevy](https://github.com/theHamsta/tree-sitter-wgsl-bevy) (maintained by @theHamsta)
|
||||
|
|
|
|||
|
|
@ -203,9 +203,6 @@
|
|||
"heex": {
|
||||
"revision": "2e1348c3cf2c9323e87c2744796cf3f3868aa82a"
|
||||
},
|
||||
"help": {
|
||||
"revision": "c4e23d265f022dcd51053c40d47cd06e7756a347"
|
||||
},
|
||||
"hjson": {
|
||||
"revision": "02fa3b79b3ff9a296066da6277adfc3f26cbc9e0"
|
||||
},
|
||||
|
|
@ -524,6 +521,9 @@
|
|||
"vim": {
|
||||
"revision": "e39a7bbcfdcfc7900629962b785c7e14503ae590"
|
||||
},
|
||||
"vimdoc": {
|
||||
"revision": "b2ec4ec5f7be24cb6f7ccffafd7204477fe5784a"
|
||||
},
|
||||
"vue": {
|
||||
"revision": "91fe2754796cd8fba5f229505a23fa08f3546c06"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -641,14 +641,6 @@ list.heex = {
|
|||
maintainers = { "@connorlay" },
|
||||
}
|
||||
|
||||
list.help = {
|
||||
install_info = {
|
||||
url = "https://github.com/neovim/tree-sitter-vimdoc",
|
||||
files = { "src/parser.c" },
|
||||
},
|
||||
maintainers = { "@vigoux" },
|
||||
}
|
||||
|
||||
list.hjson = {
|
||||
install_info = {
|
||||
url = "https://github.com/winston0410/tree-sitter-hjson",
|
||||
|
|
@ -1550,6 +1542,15 @@ list.vim = {
|
|||
maintainers = { "@vigoux" },
|
||||
}
|
||||
|
||||
list.vimdoc = {
|
||||
install_info = {
|
||||
url = "https://github.com/neovim/tree-sitter-vimdoc",
|
||||
files = { "src/parser.c" },
|
||||
},
|
||||
filetype = "help",
|
||||
maintainers = { "@clason" },
|
||||
}
|
||||
|
||||
list.vue = {
|
||||
install_info = {
|
||||
url = "https://github.com/ikatyang/tree-sitter-vue",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue