1
- *lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 March 27
1
+ *lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 March 28
2
2
3
3
==============================================================================
4
4
Table of Contents *lazy.nvim-table-of-contents*
@@ -20,6 +20,7 @@ Table of Contents *lazy.nvim-table-of-contents*
20
20
- Highlight Groups | lazy.nvim-lazy.nvim-highlight-groups |
21
21
- Plugin Authors | lazy.nvim-lazy.nvim-plugin-authors |
22
22
- Other Neovim Plugin Managers in Lua| lazy.nvim-lazy.nvim-other-neovim-plugin-managers-in-lua |
23
+ 2. Links | lazy.nvim-links |
23
24
24
25
==============================================================================
25
26
1. lazy.nvim *lazy.nvim-lazy.nvim*
@@ -614,63 +615,60 @@ enabled with `config.checker.enabled = true`.
614
615
Any operation can be started from the UI, with a sub command or an API
615
616
function:
616
617
617
- ---------------------------------------------------------------------------------------------------
618
- Command Lua Description
619
- ------------------------- -------------------------------- ---------------------- ---------------- -
620
- :Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin
618
+ ----------------------------------------------------------------------------------
619
+ Command Lua Description
620
+ ------------------------- -------------------------------- -----------------------
621
+ :Lazy build {plugins} require("lazy").build(opts) Rebuild a plugin
621
622
622
- :Lazy check [plugins] require("lazy").check(opts?) Check for updates and
623
- show the log (git
624
- fetch)
623
+ :Lazy check [plugins] require("lazy").check(opts?) Check for updates and
624
+ show the log (git
625
+ fetch)
625
626
626
- :Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are
627
- no longer needed
627
+ :Lazy clean [plugins] require("lazy").clean(opts?) Clean plugins that are
628
+ no longer needed
628
629
629
- :Lazy clear require("lazy").clear() Clear finished tasks
630
+ :Lazy clear require("lazy").clear() Clear finished tasks
630
631
631
- :Lazy debug require("lazy").debug() Show debug information
632
+ :Lazy debug require("lazy").debug() Show debug information
632
633
633
- :Lazy health require("lazy").health() Run :checkhealth lazy
634
+ :Lazy health require("lazy").health() Run :checkhealth lazy
634
635
635
- :Lazy help require("lazy").help() Toggle this help page
636
+ :Lazy help require("lazy").help() Toggle this help page
636
637
637
- :Lazy home require("lazy").home() Go back to plugin list
638
+ :Lazy home require("lazy").home() Go back to plugin list
638
639
639
- :Lazy install [plugins] require("lazy").install(opts?) Install missing
640
- plugins
640
+ :Lazy install [plugins] require("lazy").install(opts?) Install missing plugins
641
641
642
- :Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
643
- not been loaded yet.
644
- Similar to :packadd.
645
- Like
646
- :Lazy load foo.nvim.
647
- Use :Lazy! load to
648
- skip cond checks.
642
+ :Lazy load {plugins} require("lazy").load(opts) Load a plugin that has
643
+ not been loaded yet.
644
+ Similar to :packadd.
645
+ Like
646
+ :Lazy load foo.nvim.
647
+ Use :Lazy! load to skip
648
+ cond checks.
649
649
650
- :Lazy log [plugins] require("lazy").log(opts?) Show recent updates
650
+ :Lazy log [plugins] require("lazy").log(opts?) Show recent updates
651
651
652
- :Lazy profile require("lazy").profile() Show detailed
653
- profiling
652
+ :Lazy profile require("lazy").profile() Show detailed profiling
654
653
655
- :Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
656
- (experimental!!)
654
+ :Lazy reload {plugins} require("lazy").reload(opts) Reload a plugin
655
+ (experimental!!)
657
656
658
- :Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to
659
- the state in the
660
- lockfile. For a single
661
- plugin: restore it to
662
- the state in the
663
- lockfile or to a given
664
- commit under the
665
- cursor
657
+ :Lazy restore [plugins] require("lazy").restore(opts?) Updates all plugins to
658
+ the state in the
659
+ lockfile. For a single
660
+ plugin: restore it to
661
+ the state in the
662
+ lockfile or to a given
663
+ commit under the cursor
666
664
667
- :Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
668
- update
665
+ :Lazy sync [plugins] require("lazy").sync(opts?) Run install, clean and
666
+ update
669
667
670
- :Lazy update [plugins] require("lazy").update(opts?) Update plugins. This
671
- will also update the
672
- lockfile
673
- ---------------------------------------------------------------------------------------------------
668
+ :Lazy update [plugins] require("lazy").update(opts?) Update plugins. This
669
+ will also update the
670
+ lockfile
671
+ ----------------------------------------------------------------------------------
674
672
Any command can have a **bang** to make the command wait till it finished. For
675
673
example, if you want to sync lazy from the cmdline, you can use:
676
674
0 commit comments