[docgen] Update README.md

skip-checks: true
This commit is contained in:
Github Actions 2022-02-03 20:32:00 +00:00
parent 5ba5985306
commit eb961ecb6a
2 changed files with 8 additions and 2 deletions

View file

@ -254,7 +254,7 @@ require("aerial").setup({
},
-- Enum: split_width, full_width, last, none
-- Determines line highlighting mode when multiple splits are visible
-- Determines line highlighting mode when multiple splits are visible.
-- split_width Each open window will have its cursor location marked in the
-- aerial buffer. Each line will only be partially highlighted
-- to indicate which window is at that location.
@ -265,6 +265,9 @@ require("aerial").setup({
-- none Do not show the cursor locations in the aerial window.
highlight_mode = "split_width",
-- Highlight the closest symbol if the cursor is not exactly on one.
highlight_closest = true,
-- When jumping to a symbol, highlight the line for this many ms.
-- Set to false to disable
highlight_on_jump = 300,

View file

@ -128,7 +128,7 @@ Configure aerial by calling the setup() function.
},
-- Enum: split_width, full_width, last, none
-- Determines line highlighting mode when multiple splits are visible
-- Determines line highlighting mode when multiple splits are visible.
-- split_width Each open window will have its cursor location marked in the
-- aerial buffer. Each line will only be partially highlighted
-- to indicate which window is at that location.
@ -139,6 +139,9 @@ Configure aerial by calling the setup() function.
-- none Do not show the cursor locations in the aerial window.
highlight_mode = "split_width",
-- Highlight the closest symbol if the cursor is not exactly on one.
highlight_closest = true,
-- When jumping to a symbol, highlight the line for this many ms.
-- Set to false to disable
highlight_on_jump = 300,