Skip to content

Commit

Permalink
fix(helpview-nvim): add missing treesitter parser (#1159)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuuurino authored Aug 13, 2024
1 parent 8d92792 commit ee47571
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
return {
"OXY2DEV/helpview.nvim",
ft = "help",
dependencies = { "nvim-treesitter/nvim-treesitter" },
dependencies = {
"nvim-treesitter/nvim-treesitter",
optional = true,

This comment has been minimized.

Copy link
@mehalter

mehalter Aug 13, 2024

Member

This shouldn't be optional. It is strictly required by helpview.nvim

opts = function(_, opts)
if opts.ensure_installed ~= "all" then
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "vimdoc" })
end
end,
},
}

0 comments on commit ee47571

Please sign in to comment.