Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature request: allow undo to before saved changes #27

Open
ibrokemypie opened this issue Sep 23, 2024 · 1 comment
Open

feature request: allow undo to before saved changes #27

ibrokemypie opened this issue Sep 23, 2024 · 1 comment
Labels
enhancement New feature or request P2 Not a priority. PRs welcome

Comments

@ibrokemypie
Copy link

ibrokemypie commented Sep 23, 2024

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

  1. :grep file
  2. :%s/ file/ folder/
  3. :w
  4. 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 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 here

Additional context

No response

@ibrokemypie ibrokemypie added the bug Something isn't working label Sep 23, 2024
@stevearc stevearc added enhancement New feature or request and removed bug Something isn't working labels Oct 4, 2024
@stevearc stevearc changed the title bug: unable to undo after saving feature request: allow undo to before saved changes Oct 4, 2024
@stevearc
Copy link
Owner

stevearc commented Oct 4, 2024

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.

@stevearc stevearc added the P2 Not a priority. PRs welcome label Oct 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request P2 Not a priority. PRs welcome
Projects
None yet
Development

No branches or pull requests

2 participants