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
After saving changes to the quickfix buffer, the undo history is lost, and hitting u says that I am already at the oldest change. Before saving the changes undo works as expected.
What is the severity of this bug?
tolerable (can work around it)
Steps To Reproduce
:grep file
:%s/ file/ folder/
:w
u
Expected Behavior
All instances of file that were replaced with folder are reverted back the way they were in the quickfix buffer. The buffer is marked as modified. The actual contents of the files that were changed when saving the quickfix buffer are so far unmodified, but saving the buffer now would return them back the way they were before running the replacement.
Minimal example file
one file
two file
three file
four file
Minimal init.lua
-- 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",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
{
"stevearc/quicker.nvim",
config=function()
require("quicker").setup({
-- add your config here
})
end,
},
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
Additional context
No response
The text was updated successfully, but these errors were encountered:
This is an intentional gap at the moment. Saving the quickfix buffer actually calls setqflist which will generate an entirely new quickfix buffer. There may be a way to keep the history, but it will require a pile of hacks.
Neovim version (nvim -v)
v0.10.1
Operating system/version
NixOS 24.11 (Vicuna)
Describe the bug
After saving changes to the quickfix buffer, the undo history is lost, and hitting
u
says that I am already at the oldest change. Before saving the changes undo works as expected.What is the severity of this bug?
tolerable (can work around it)
Steps To Reproduce
:grep file
:%s/ file/ folder/
:w
u
Expected Behavior
All instances of
file
that were replaced withfolder
are reverted back the way they were in the quickfix buffer. The buffer is marked as modified. The actual contents of the files that were changed when saving the quickfix buffer are so far unmodified, but saving the buffer now would return them back the way they were before running the replacement.Minimal example file
Minimal init.lua
Additional context
No response
The text was updated successfully, but these errors were encountered: