chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2022-12-19 12:38:06 +00:00
parent 65675808d1
commit 7eb60345d6
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2022 December 18 *lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2022 December 19
============================================================================== ==============================================================================
Table of Contents *lazy.nvim-table-of-contents* Table of Contents *lazy.nvim-table-of-contents*
@ -107,7 +107,7 @@ PLUGIN SPEC *lazy.nvim-plugin-spec*
│[1] │string? │Short plugin url. Will be expanded using config.git.url_format │ │[1] │string? │Short plugin url. Will be expanded using config.git.url_format │
│**dir** │string? │A directory pointing to a local plugin │ │**dir** │string? │A directory pointing to a local plugin │
│**url** │string? │A custom git url where the plugin is hosted │ │**url** │string? │A custom git url where the plugin is hosted │
│**name** │string? │A custom name for the plugin used for the local plugin directory and as the dispay name │**name** │string? │A custom name for the plugin used for the local plugin directory and as the display name │
│**dev** │boolean? │When true, a local plugin directory will be used instead. See config.dev │ │**dev** │boolean? │When true, a local plugin directory will be used instead. See config.dev │
│**lazy** │boolean? │When true, the plugin will only be loaded when needed. Lazy-loaded plugins are automatically loaded when their lua modules are required, or when one of the laz-loading handlers triggers │ │**lazy** │boolean? │When true, the plugin will only be loaded when needed. Lazy-loaded plugins are automatically loaded when their lua modules are required, or when one of the laz-loading handlers triggers │
│**enabled** │boolean? or fun():boolean │When false, or if the function returns false, then this plugin will not be used │ │**enabled** │boolean? or fun():boolean │When false, or if the function returns false, then this plugin will not be used │
@ -246,7 +246,7 @@ Other examples:
keys = { "<C-a>", "<C-x>" }, keys = { "<C-a>", "<C-x>" },
}, },
-- local plugins need to be explicitely configured with dir -- local plugins need to be explicitly configured with dir
{ dir = "~/projects/secret.nvim" }, { dir = "~/projects/secret.nvim" },
-- you can use a custom url to fetch a plugin -- you can use a custom url to fetch a plugin
@ -312,7 +312,7 @@ CONFIGURATION *lazy.nvim-configuration*
throttle = 20, -- how frequently should the ui process render events throttle = 20, -- how frequently should the ui process render events
}, },
checker = { checker = {
-- automcatilly check for plugin updates -- automatically check for plugin updates
enabled = false, enabled = false,
concurrency = nil, ---@type number? set to 1 to check for updates very slowly concurrency = nil, ---@type number? set to 1 to check for updates very slowly
notify = true, -- get a notification when new updates are found notify = true, -- get a notification when new updates are found