You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which works as expected on v10.24.3 - the version of lazy I am currently running. After upgrading to any version of lazy.nvim after v11 saving a file in my lua config will print notifications in neovim.
See attached image:
Steps To Reproduce
Upgrade to lazy.nvim v11+
Run :w in a file in your neovim config directory
Expected Behavior
Change detection should be disabled when change_detection.enabled = false
Repro
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
The text was updated successfully, but these errors were encountered:
Did you check docs and existing issues?
Neovim version (nvim -v)
0.9.5
Operating system/version
MacOS 14.3
Describe the bug
I have
change_detection.enabled = false
defined in my config:Which works as expected on
v10.24.3
- the version of lazy I am currently running. After upgrading to any version of lazy.nvim afterv11
saving a file in my lua config will print notifications in neovim.See attached image:
Steps To Reproduce
:w
in a file in your neovim config directoryExpected Behavior
Change detection should be disabled when
change_detection.enabled = false
Repro
The text was updated successfully, but these errors were encountered: