Skip to content

Instantly share code, notes, and snippets.

@suewonjp
Created June 7, 2016 08:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suewonjp/c9bc75605d4ead232261b1cdc0ef4fb6 to your computer and use it in GitHub Desktop.
Save suewonjp/c9bc75605d4ead232261b1cdc0ef4fb6 to your computer and use it in GitHub Desktop.
[vim tip] Toggle Quickfix Window
function! ToggleQuickfix()
let l:nr = winnr("$")
if l:nr == 1
copen
else
cclose
endif
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment