[docgen] Update docs

skip-checks: true
This commit is contained in:
Github Actions 2022-11-02 01:05:34 +00:00
parent 5dd090432e
commit f15e49cbc0
2 changed files with 6 additions and 4 deletions

View file

@ -213,9 +213,10 @@ require("aerial").setup({
-- unsupported - close aerial when attaching to a buffer that has no symbol source
close_automatic_events = {},
-- Keymaps in aerial window. Can be any value that `vim.keymap.set` accepts.
-- Keymaps in aerial window. Can be any value that `vim.keymap.set` accepts OR a table of keymap
-- options with a `callback` (e.g. { callback = function() ... end, desc = "", nowait = true })
-- Additionally, if it is a string that matches "aerial.<name>",
-- it will use the function at require("aerial.action").<name>
-- it will use the mapping at require("aerial.action").<name>
-- Set to `false` to remove a keymap
keymaps = {
["?"] = "actions.show_help",

View file

@ -52,9 +52,10 @@ OPTIONS *aerial-option
-- unsupported - close aerial when attaching to a buffer that has no symbol source
close_automatic_events = {},
-- Keymaps in aerial window. Can be any value that `vim.keymap.set` accepts.
-- Keymaps in aerial window. Can be any value that `vim.keymap.set` accepts OR a table of keymap
-- options with a `callback` (e.g. { callback = function() ... end, desc = "", nowait = true })
-- Additionally, if it is a string that matches "aerial.<name>",
-- it will use the function at require("aerial.action").<name>
-- it will use the mapping at require("aerial.action").<name>
-- Set to `false` to remove a keymap
keymaps = {
["?"] = "actions.show_help",