Skip to content

Commit efe72d9

Browse files
committed
perf(util): properly check that Neovim is exiting. Dont run VeryLazy when that's the case
1 parent e8cb863 commit efe72d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/lazy/core/util.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ end
142142
function M.very_lazy()
143143
local function _load()
144144
vim.schedule(function()
145-
-- if vim.v.exiting then
146-
-- return
147-
-- end
145+
if vim.v.exiting ~= vim.NIL then
146+
return
147+
end
148148
vim.g.did_very_lazy = true
149149
vim.api.nvim_exec_autocmds("User", { pattern = "VeryLazy", modeline = false })
150150
end)

0 commit comments

Comments
 (0)