qfc.nvim
is a Neovim plugin that automatically manages Quickfix windows. It closes the Quickfix window after a specified timeout when the window loses focus and deletes the buffer.
{
'mei28/qfc.nvim',
config = function()
require('qfc').setup({
timeout = 3000, -- Timeout setting in milliseconds
enabled = true, -- Enable/disable autoclose feature
}),
-- ft = 'qf', -- for lazy load
-- cmd = {'QFC'} -- for lazy load
end
}
require('qfc').setup({
timeout = 2000, -- Timeout setting in milliseconds
enabled = true, -- Enable/disable autoclose feature
})
timeout
: Specifies the timeout in milliseconds after which the Quickfix window will be automatically closed once it loses focus.enabled
: Enables or disables the plugin. Set to true to enable or false to disable.:QFC enable
Enables the Quickfix autoclose feature.:QFC disable
Disables the Quickfix autoclose feature.:QFC toggle
toggle the Quickfix autoclose feature.MIT