From 8baedf2cd2fabd6f983b396e238cbbc6e1d5bddd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 30 Dec 2022 08:18:51 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 04a5d2c..bd0d60d 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -523,26 +523,26 @@ enabled with `config.checker.enabled = true`. Any operation can be started from the UI, with a sub command or an API function: -│ Command │ Lua │ Description │ -│:Lazy check [plugins] │require("lazy").check(opts?) │Check for updates and show the log (git fetch) │ -│:Lazy clean [plugins] │require("lazy").clean(opts?) │Clean plugins that are no longer needed │ -│:Lazy clear │require("lazy").clear() │Clear finished tasks │ -│:Lazy debug │require("lazy").debug() │Show debug information │ -│:Lazy help │require("lazy").help() │Toggle this help page │ -│:Lazy home │require("lazy").home() │Go back to plugin list │ -│:Lazy install [plugins] │require("lazy").install(opts?) │Install missing plugins │ -│:Lazy load {plugins} │require("lazy").load(opts) │Load a plugin that has not been loaded yet. Similar to :packadd. Like :Lazy load foo.nvim │ -│:Lazy log [plugins] │require("lazy").log(opts?) │Show recent updates │ -│:Lazy profile │require("lazy").profile() │Show detailed profiling │ -│:Lazy restore [plugins] │require("lazy").restore(opts?) │Updates all plugins to the state in the lockfile │ -│:Lazy sync [plugins] │require("lazy").sync(opts?) │Run install, clean and update │ -│:Lazy update [plugins] │require("lazy").update(opts?) │Update plugins. This will also update the lockfile │ +│ Command │ Lua │ Description │ +│:Lazy check [plugins] │require("lazy").check(opts?) │Check for updates and show the log (git fetch) │ +│:Lazy clean [plugins] │require("lazy").clean(opts?) │Clean plugins that are no longer needed │ +│:Lazy clear │require("lazy").clear() │Clear finished tasks │ +│:Lazy debug │require("lazy").debug() │Show debug information │ +│:Lazy help │require("lazy").help() │Toggle this help page │ +│:Lazy home │require("lazy").home() │Go back to plugin list │ +│:Lazy install [plugins] │require("lazy").install(opts?) │Install missing plugins │ +│:Lazy load {plugins} │require("lazy").load(opts) │Load a plugin that has not been loaded yet. Similar to :packadd. Like :Lazy load foo.nvim │ +│:Lazy log [plugins] │require("lazy").log(opts?) │Show recent updates │ +│:Lazy profile │require("lazy").profile() │Show detailed profiling │ +│:Lazy restore [plugins] │require("lazy").restore(opts?) │Updates all plugins to the state in the lockfile. For a single plugin: restore it to the state in the lockfile or to a given commit under the cursor│ +│:Lazy sync [plugins] │require("lazy").sync(opts?) │Run install, clean and update │ +│:Lazy update [plugins] │require("lazy").update(opts?) │Update plugins. This will also update the lockfile │ Any command can have a **bang** to make the command wait till it finished. For example, if you want to sync lazy from the cmdline, you can use: ->lua +>shell $ nvim --headless "+Lazy! sync" +qa <