mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
2dd6230018
commit
c065ca2b32
|
@ -321,7 +321,7 @@ CONFIGURATION *lazy.nvim-configuration*
|
||||||
performance = {
|
performance = {
|
||||||
cache = {
|
cache = {
|
||||||
enabled = true,
|
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.
|
-- Once one of the following events triggers, caching will be disabled.
|
||||||
-- To cache all modules, set this to `{}`, but that is not recommended.
|
-- To cache all modules, set this to `{}`, but that is not recommended.
|
||||||
-- The default is to disable on:
|
-- The default is to disable on:
|
||||||
|
@ -365,18 +365,19 @@ you can start any operation with a specific command, sub command or API
|
||||||
function:
|
function:
|
||||||
|
|
||||||
│ Command │ Lua │Key Mapping│ Description │
|
│ Command │ Lua │Key Mapping│ Description │
|
||||||
│:Lazy home or :LazyHome │require("lazy").home() │<H> │Go back to plugin list │
|
│:Lazy home │require("lazy").home() │<H> │Go back to plugin list │
|
||||||
│:Lazy install or :LazyInstall │require("lazy").install() │<I> │Install missing plugins │
|
│:Lazy install │require("lazy").install() │<I> │Install missing plugins │
|
||||||
│:Lazy update or :LazyUpdate │require("lazy").update() │<U> │Update all plugins. This will also update the lockfile│
|
│:Lazy update │require("lazy").update() │<U> │Update all plugins. This will also update the lockfile │
|
||||||
│:Lazy sync or :LazySync │require("lazy").sync() │<S> │Run install, clean and update │
|
│:Lazy sync │require("lazy").sync() │<S> │Run install, clean and update │
|
||||||
│:Lazy clean or :LazyClean │require("lazy").clean() │<X> │Clean plugins that are no longer needed │
|
│:Lazy clean │require("lazy").clean() │<X> │Clean plugins that are no longer needed │
|
||||||
│:Lazy check or :LazyCheck │require("lazy").check() │<C> │Check for updates and show the log (git fetch) │
|
│:Lazy check │require("lazy").check() │<C> │Check for updates and show the log (git fetch) │
|
||||||
│:Lazy log or :LazyLog │require("lazy").log() │<L> │Show recent updates for all plugins │
|
│:Lazy log │require("lazy").log() │<L> │Show recent updates for all plugins │
|
||||||
│:Lazy restore or :LazyRestore │require("lazy").restore() │<R> │Updates all plugins to the state in the lockfile │
|
│:Lazy restore │require("lazy").restore() │<R> │Updates all plugins to the state in the lockfile │
|
||||||
│:Lazy profile or :LazyProfile │require("lazy").profile() │<P> │Show detailed profiling │
|
│:Lazy profile │require("lazy").profile() │<P> │Show detailed profiling │
|
||||||
│:Lazy debug or :LazyDebug │require("lazy").debug() │<D> │Show debug information │
|
│:Lazy debug │require("lazy").debug() │<D> │Show debug information │
|
||||||
│:Lazy help or :LazyHelp │require("lazy").help() │<?> │Toggle this help page │
|
│:Lazy help │require("lazy").help() │<?> │Toggle this help page │
|
||||||
│:Lazy clear or :LazyClear │require("lazy").clear() │ │Clear finished tasks │
|
│: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`*
|
LOCKFILE `LAZY-LOCK.JSON` *lazy.nvim-lockfile-`lazy-lock.json`*
|
||||||
|
|
Loading…
Reference in New Issue