Skip to content

Instantly share code, notes, and snippets.

@aar0nTw
Created December 12, 2012 17:29
Show Gist options
  • Save aar0nTw/4269800 to your computer and use it in GitHub Desktop.
Save aar0nTw/4269800 to your computer and use it in GitHub Desktop.
"Qfix toggle (vim)
command -bang -nargs=? QFix call QFixToggle(<bang>0)
function! QFixToggle(forced)
if exists("g:qfix_win") && a:forced == 0
cclose
unlet g:qfix_win
else
copen10
letg:qfix_win=bufnr("$")
endif
endfunction
nnoremap <leader>q :QFix<CR>
autocmdBufWinEnterquickfixletg:qfix_win = bufnr("$")\w⚡"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment