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.
Default installation with lazy.nvim:
'shmerl/quickfixdel'
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
.