From c065ca2b32b9fff8a83786ab31844910cd3149b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 19 Dec 2022 13:23:33 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index b346f75..4986ac2 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -321,7 +321,7 @@ CONFIGURATION *lazy.nvim-configuration* performance = { cache = { enabled = true, - path = vim.fn.stdpath("state") .. "/lazy.state", + path = vim.fn.stdpath("state") .. "/lazy/cache", -- Once one of the following events triggers, caching will be disabled. -- To cache all modules, set this to `{}`, but that is not recommended. -- The default is to disable on: @@ -364,19 +364,20 @@ You can manage all your plugins with the main `:Lazy` command. Alternatively you can start any operation with a specific command, sub command or API function: -│ Command │ Lua │Key Mapping│ Description │ -│:Lazy home or :LazyHome │require("lazy").home() │ │Go back to plugin list │ -│:Lazy install or :LazyInstall │require("lazy").install() │ │Install missing plugins │ -│:Lazy update or :LazyUpdate │require("lazy").update() │ │Update all plugins. This will also update the lockfile│ -│:Lazy sync or :LazySync │require("lazy").sync() │ │Run install, clean and update │ -│:Lazy clean or :LazyClean │require("lazy").clean() │ │Clean plugins that are no longer needed │ -│:Lazy check or :LazyCheck │require("lazy").check() │ │Check for updates and show the log (git fetch) │ -│:Lazy log or :LazyLog │require("lazy").log() │ │Show recent updates for all plugins │ -│:Lazy restore or :LazyRestore │require("lazy").restore() │ │Updates all plugins to the state in the lockfile │ -│:Lazy profile or :LazyProfile │require("lazy").profile() │

│Show detailed profiling │ -│:Lazy debug or :LazyDebug │require("lazy").debug() │ │Show debug information │ -│:Lazy help or :LazyHelp │require("lazy").help() │ │Toggle this help page │ -│:Lazy clear or :LazyClear │require("lazy").clear() │ │Clear finished tasks │ +│ Command │ Lua │Key Mapping│ Description │ +│:Lazy home │require("lazy").home() │ │Go back to plugin list │ +│:Lazy install │require("lazy").install() │ │Install missing plugins │ +│:Lazy update │require("lazy").update() │ │Update all plugins. This will also update the lockfile │ +│:Lazy sync │require("lazy").sync() │ │Run install, clean and update │ +│:Lazy clean │require("lazy").clean() │ │Clean plugins that are no longer needed │ +│:Lazy check │require("lazy").check() │ │Check for updates and show the log (git fetch) │ +│:Lazy log │require("lazy").log() │ │Show recent updates for all plugins │ +│:Lazy restore │require("lazy").restore() │ │Updates all plugins to the state in the lockfile │ +│:Lazy profile │require("lazy").profile() │

│Show detailed profiling │ +│:Lazy debug │require("lazy").debug() │ │Show debug information │ +│:Lazy help │require("lazy").help() │ │Toggle this help page │ +│:Lazy clear │require("lazy").clear() │ │Clear finished tasks │ +│:Lazy load │require("lazy").load() │ │Load a plugin that has not been loaded yet. Similar to :packadd. Like :Lazy load foo.nvim │ LOCKFILE `LAZY-LOCK.JSON` *lazy.nvim-lockfile-`lazy-lock.json`*