" Autoload functions for QuickFix window " Last Changed: 2019-01-27 " Author: Federico Igne <> " License: This file is placed in the public domain. function! dyamon#qf#toggle() abort if exists("g:qfOpen") cclose unlet g:qfOpen else let g:qfOpen = 1 botright copen " Keep the current window focused wincmd p endif endfunc