[docgen] Update README.md

skip-checks: true
This commit is contained in:
Github Actions 2022-10-19 15:39:44 +00:00
parent 008caa510d
commit d35799b510
2 changed files with 12 additions and 2 deletions

View file

@ -238,7 +238,7 @@ require("aerial").setup({
require("aerial").setup({
-- Priority list of preferred backends for aerial.
-- This can be a filetype map (see :help aerial-filetype-map)
backends = { "treesitter", "lsp", "markdown" },
backends = { "treesitter", "lsp", "markdown", "man" },
layout = {
-- These control the width of the aerial window.
@ -462,6 +462,11 @@ require("aerial").setup({
-- How long to wait (in ms) after a buffer change before updating
update_delay = 300,
},
man = {
-- How long to wait (in ms) after a buffer change before updating
update_delay = 300,
},
})
```

View file

@ -108,7 +108,7 @@ Configure aerial by calling the setup() function.
require("aerial").setup({
-- Priority list of preferred backends for aerial.
-- This can be a filetype map (see :help aerial-filetype-map)
backends = { "treesitter", "lsp", "markdown" },
backends = { "treesitter", "lsp", "markdown", "man" },
layout = {
-- These control the width of the aerial window.
@ -332,6 +332,11 @@ Configure aerial by calling the setup() function.
-- How long to wait (in ms) after a buffer change before updating
update_delay = 300,
},
man = {
-- How long to wait (in ms) after a buffer change before updating
update_delay = 300,
},
})
<