From 31fbd369bbbeb53080c4b1ead9e76be322725ef5 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Sat, 2 Mar 2024 23:24:03 +0000 Subject: [PATCH] [docgen] Update docs skip-checks: true --- README.md | 7 ++++++- doc/aerial.txt | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d912ac4..e8dc130 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ it](https://github.com/stevearc/aerial.nvim/issues/new?assignees=stevearc&labels 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", "man" }, + backends = { "treesitter", "lsp", "markdown", "asciidoc", "man" }, layout = { -- These control the width of the aerial window. @@ -546,6 +546,11 @@ require("aerial").setup({ update_delay = 300, }, + asciidoc = { + -- 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, diff --git a/doc/aerial.txt b/doc/aerial.txt index f6648e5..90d1677 100644 --- a/doc/aerial.txt +++ b/doc/aerial.txt @@ -15,7 +15,7 @@ OPTIONS *aerial-option 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", "man" }, + backends = { "treesitter", "lsp", "markdown", "asciidoc", "man" }, layout = { -- These control the width of the aerial window. @@ -356,6 +356,11 @@ OPTIONS *aerial-option update_delay = 300, }, + asciidoc = { + -- 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,