QuickFix quality of life (#435)

* Exclude the quickfix buffer from the barbar buffer list

* Add mapping and function to toggle the quickfix window
This commit is contained in:
tafryn 2021-05-26 21:06:06 -07:00 committed by GitHub
parent 12b5dc796f
commit d0f87322f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View file

@ -63,3 +63,6 @@ vim.api.nvim_set_keymap('n', 'gx', ":call netrw#BrowseX(expand((exists('g:netrw_
-- map <leader>n <Plug>(miniyank-cycle)
-- map <leader>N <Plug>(miniyank-cycleback)
-- ]])
-- Toggle the QuickFix window
vim.api.nvim_set_keymap('', '<C-q>', ':call QuickFixToggle()<CR>', {noremap = true, silent = true})