From bd76c25804d74dcec4f4fb671fcd12c1f5af4d9d Mon Sep 17 00:00:00 2001 From: Gert Burger Date: Thu, 18 Jul 2024 16:04:08 +0100 Subject: [PATCH] docs(commands): fix command ordering for sync (#1662) ## Description Fixup of https://github.com/folke/lazy.nvim/pull/1661 which targets correct branch. Anything else astray? --- docs/usage/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/index.md b/docs/usage/index.md index be1466f..d936c05 100644 --- a/docs/usage/index.md +++ b/docs/usage/index.md @@ -50,7 +50,7 @@ Any operation can be started from the UI, with a sub command or an API function: | `:Lazy profile` | `require("lazy").profile()` | Show detailed profiling | | `:Lazy reload {plugins}` | `require("lazy").reload(opts)` | Reload a plugin (experimental!!) | | `: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 sync [plugins]` | `require("lazy").sync(opts?)` | Run clean, install and update commands | | `:Lazy update [plugins]` | `require("lazy").update(opts?)` | Update plugins. This will also update the lockfile |