Skip to content

shmerl/quickfixdel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Quickfix delete

Neovim Lua plugin which provides a keymapping (dd by default) for deleting entries in the quickfix list window.

Deletes the current entry in the quickfix list in the line under the cursor, not the currently selected quickfix entry.

Inspired by quickfixdd by @TamaMcGlinn, but written in Lua adding optional key customization.

Installation

Default installation with lazy.nvim:

   'shmerl/quickfixdel'

Optional setup

Installation with lazy.nvim setting a custom key (F8):

   {
      'shmerl/quickfixdel',
      config = function()
         require('quickfixdel'):setup({ key = '<F8>' })
      end
   }

You can use any string value for key that's acceptable as rhs described in :help vim.keymap.set.

About

Neovim plugin for deleting entries in quickfix list

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages