From 99163185226ab6dd37b84ff8dc48d308fb9b16d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 20 Dec 2022 09:56:46 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 3b68fef..0b23d64 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -11,10 +11,11 @@ Table of Contents *lazy.nvim-table-of-contents* - Configuration |lazy.nvim-configuration| - Usage |lazy.nvim-usage| - Lockfile `lazy-lock.json` |lazy.nvim-lockfile-`lazy-lock.json`| - - Profiler |lazy.nvim-profiler| + - Performance |lazy.nvim-performance| - 🪲 Debug |lazy.nvim-🪲-debug| - Startup Sequence |lazy.nvim-startup-sequence| - Structuring Your Plugins |lazy.nvim-structuring-your-plugins| + - Performance |lazy.nvim-performance| - Migration Guide |lazy.nvim-migration-guide| - Uninstalling |lazy.nvim-uninstalling| - Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua| @@ -395,7 +396,8 @@ Plugins are managed with the `:Lazy` command. Open the help with `` to see all the key mappings. You can press `` on a plugin to show its details. Most properties can be -hovered with `` to open links, help files, readmes and git commits. +hovered with `` to open links, help files, readmes, git commits and git +issues. Any operation can alternatively be started with a sub command or API function: @@ -426,9 +428,16 @@ ensure that the same version of every plugin is installed. On the other machine, you can do `Lazy restore`, to update all your plugins to the version from the lockfile -PROFILER *lazy.nvim-profiler* +PERFORMANCE *lazy.nvim-performance* -The profiling view shows you why and how long it took to load your plugins. +Great care has been taken to make the startup code (`lazy.core`) as efficient +as possible. During startup, all lua files used before `VimEnter` or +`BufReadPre` are byte-compiled and cached, similar to what impatient.nvim + does. + +**lazy.nvim** comes with an advanced profiler `:Lazy profile` to help you +improve performance. The profiling view shows you why and how long it took to +load your plugins.
@@ -507,6 +516,8 @@ Example: - any lua file in `~/.config/nvim/lua/plugins/.lua` will be automatically merged in the main plugin spec +PERFORMANCE *lazy.nvim-performance* + MIGRATION GUIDE *lazy.nvim-migration-guide* PACKER.NVIM ~