Auto generate vim docs

This commit is contained in:
hedyhli
2023-11-02 09:47:38 +00:00
committed by github-actions[bot]
parent a87f73c3b2
commit c5312f7495

View File

@@ -79,6 +79,8 @@ Features/Changes:
than fixed to the top). This is planned to be configurable. than fixed to the top). This is planned to be configurable.
- Feat: Added function and command to show provider and outline window status, - Feat: Added function and command to show provider and outline window status,
somewhat like `:LspInfo`. somewhat like `:LspInfo`.
- BREAKING: Marker icons used for guides can now be customized. `show_guides`
deprecated in favor of `guides.enabled`.
Fixes: Fixes:
@@ -267,14 +269,27 @@ Default values are shown:
-- Whether to highlight the currently hovered symbol (high cpu usage) -- Whether to highlight the currently hovered symbol (high cpu usage)
highlight_hovered_item = true, highlight_hovered_item = true,
-- Whether to show outline guides -- Options for outline guides
show_guides = true, guides = {
enabled = true,
markers = {
bottom = '└',
middle = '├',
vertical = '│',
horizontal = '─',
},
},
-- Automatically open preview of code on hover -- Automatically open preview of code on hover
auto_preview = false, auto_preview = false,
-- Automatically open hover_symbol when opening toggle_preview (see keymaps). -- Automatically open hover_symbol when opening toggle_preview (see keymaps).
-- If you disable this you can still open hover_symbol using your keymap -- If you disable this you can still open hover_symbol using your keymap
-- below. -- below.
open_hover_on_preview = true, open_hover_on_preview = true,
-- Border option for floating preview window.
-- Options include: single/double/rounded/solid/shadow or an array of border
-- characters.
-- See :help nvim_open_win() and search for "border" option.
border = 'single',
-- Behaviour changed in this fork: -- Behaviour changed in this fork:
-- Auto close the outline window if goto_location is triggered and not for -- Auto close the outline window if goto_location is triggered and not for
-- focus_location -- focus_location
@@ -308,7 +323,9 @@ Default values are shown:
keymaps = { keymaps = {
show_help = '?', show_help = '?',
close = {"<Esc>", "q"}, close = {"<Esc>", "q"},
-- Jump to symbol under cursor -- Jump to symbol under cursor.
-- It can auto close the outline window when triggered, see
-- 'auto_close' option above.
goto_location = "<Cr>", goto_location = "<Cr>",
-- Jump to symbol under cursor but keep focus on outline window -- Jump to symbol under cursor but keep focus on outline window
focus_location = "o", focus_location = "o",