Skip to content

Instantly share code, notes, and snippets.

@sideshowcoder
Created December 9, 2014 17:42
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 sideshowcoder/ba5faad45300737c66e9 to your computer and use it in GitHub Desktop.
Save sideshowcoder/ba5faad45300737c66e9 to your computer and use it in GitHub Desktop.
Clear the vim quickfix list
function ClearQuickfixList()
call setqflist([])
endfunction
command! ClearQuickfixList call ClearQuickfixList()
nmap <leader>cf :ClearQuickfixList<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment