feat(treesitter): table of contents for checkhealth, markdown (#32282)

Problem: It's difficult to navigate large structured text files (vim
help, checkhealth, Markdown).

Solution: Support `gO` for table of contents and `]]`/`[[` for moving
between headings for all these filetypes using treesitter queries.

Refactor: colorization of highlight groups is moved to the `help` ftplugin
while headings-related functionality is implemented in a private
`vim.treesitter` module for possible future use for other filetypes.
This commit is contained in:
Christian Clason
2025-02-22 13:07:21 +01:00
committed by GitHub
parent 5cead869fb
commit 2e5b560482
7 changed files with 221 additions and 79 deletions

View File

@@ -5,6 +5,7 @@ local M = {}
---@type table<string,string>
local ft_to_lang = {
help = 'vimdoc',
checkhealth = 'vimdoc',
}
--- Returns the filetypes for which a parser named {lang} is used.