-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Neovim version (nvim -v)
NVIM v0.11.4
Operating system/version
MacOS 15.6.1
Describe the bug
If you delete entries from the quickfix window, then try to jump to an entry from the quickfix by pressing enter, the entry you jump to is not the one selected, but the one that was in that position before being deleted.
What is the severity of this bug?
breaking (some functionality is broken)
Steps To Reproduce
- Open quickfix
- Delete some entries in the quickfix list.
- Press enter on a quickfix entry that is in a new location after the previous entries were deleted
- See that the entry you jumped to is not the one you selected
Expected Behavior
I expect to delete lines in the quickfix window that I don't care about, then be able to jump to the remaining entries.
Minimal example file
No response
Minimal init.lua
-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
"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 hereAdditional context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working