nvim-lua / wishlist

A public catalogue of Lua plugins Neovim users would like to see exist
MIT License
235 stars 0 forks source link

Multiple quickfix lists #41

Closed talbergs closed 2 years ago

talbergs commented 2 years ago

What? Ability to work with many quickfix lists. I can pull out a quickfixlist from a history of quickfix lists I had worked on. They can optionally be given a name, to ease the switching between them.

Why? Many tools populate quickfix list and just destroys and forgets the previous listing. For example, vim.lsp.references() will list references of a method for me, then BLines (from fzf) I filter the points of interest in the file to refactor/wonder/whatever in. Now I have lost the previous list. Real world complaints are endless, this example I just made up for illustration.

Potential existing implementations: None that I am aware of.

Potential pitfalls:

Other insights:

mfussenegger commented 2 years ago

Are you aware of :chistory, :colder and :cnewer ?

talbergs commented 2 years ago

I was not aware of these @mfussenegger, thank you! Basically, this issue is resolved now :D

matu3ba commented 2 years ago

If it is resolved for you, you can close it.