[docgen] Update README.md

skip-checks: true
This commit is contained in:
Github Actions 2022-03-31 15:40:43 +00:00
parent defa94d955
commit 23be0bdcf9
2 changed files with 14 additions and 0 deletions

View file

@ -237,6 +237,9 @@ require("aerial").setup({
-- Disable aerial on files with this many lines
disable_max_lines = 10000,
-- Disable aerial on files this size or larger (in bytes)
disable_max_size = 10000000,
-- A list of all symbols to display. Set to false to display all symbols.
-- This can be a filetype map (see :help aerial-filetype-map)
-- To see all available values, see :help SymbolKind
@ -411,6 +414,10 @@ require("aerial").setup({
-- Set to false to not update the symbols when there are LSP errors
update_when_errors = true,
-- How long to wait (in ms) after a buffer change before updating
-- Only used when diagnostics_trigger_update = false
update_delay = 300,
},
treesitter = {

View file

@ -113,6 +113,9 @@ Configure aerial by calling the setup() function.
-- Disable aerial on files with this many lines
disable_max_lines = 10000,
-- Disable aerial on files this size or larger (in bytes)
disable_max_size = 10000000,
-- A list of all symbols to display. Set to false to display all symbols.
-- This can be a filetype map (see :help aerial-filetype-map)
-- To see all available values, see :help SymbolKind
@ -287,6 +290,10 @@ Configure aerial by calling the setup() function.
-- Set to false to not update the symbols when there are LSP errors
update_when_errors = true,
-- How long to wait (in ms) after a buffer change before updating
-- Only used when diagnostics_trigger_update = false
update_delay = 300,
},
treesitter = {