Skip to content

pablopunk/fixquick.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fixquick.nvim ⚡💻

Gain control of the contents of your quickfix list. Modify it, use it, save it.

Important

This is a work in progress. If you find any issues, please report them.

The problem

You open the quickfix list with a bunch of files (from Telescope... diagnostics... wherever) and you want to exclude some of those files from the list. You can't. Quickfix is not modifiable.

But lets say you're crazy enough to run :set modifiable and you make some changes (:g/tests/d). It works! But not really. Even though you can indeed modify it, it will remain useless. You press enter on a file and it will open the one it was in that line before, ignoring your changes.

The solution

fixquick.nvim makes your quickfix list modifiable like any file buffer and when you save it it will make the changes permanent. Filtering

Installation

Using lazy.nvim:

{
  "pablopunk/fixquick.nvim",
  event = "BufEnter",
  config = true
}

Don't forget to call require('fixquick').setup(). In lazy, config = true is enough.

Utils

require('fixquick').disable() -- disable plugin

About

[WIP] Quick fix for quickfix

Resources

Stars

Watchers

Forks