mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
fix(commands): sync with plugins list should not delete those plugins. Fixes #475
This commit is contained in:
parent
15fe46a728
commit
0c980312fd
1 changed files with 4 additions and 1 deletions
|
@ -174,7 +174,10 @@ function M.sync(opts)
|
|||
end)
|
||||
opts.show = false
|
||||
end
|
||||
local clean = M.clean(opts)
|
||||
|
||||
local clean_opts = vim.deepcopy(opts)
|
||||
clean_opts.plugins = nil
|
||||
local clean = M.clean(clean_opts)
|
||||
local install = M.install(opts)
|
||||
local update = M.update(opts)
|
||||
clean:wait(function()
|
||||
|
|
Loading…
Add table
Reference in a new issue