mei28 / qfc.nvim

⏲️ Auto close quickfix by timer
MIT License
6 stars 0 forks source link
neovim-plugin

qfc.nvim

qfc

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.

Features

Installation

{
  '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
}

Configuration

require('qfc').setup({
  timeout = 2000,   -- Timeout setting in milliseconds
  enabled = true, -- Enable/disable autoclose feature

})

Configuration Options

Commands

License

MIT