tomtom/quickfixsigns_vim

Clear buffer markers - don't toggle plugin

chazy opened this issue · 2 comments

Hi,

thanks again for a great plugin.

Question: If you just want to clear the current markers until you perform some action that will change the quickfix buffer (grep, make, etc.), what is the way (if any) to do so?

Thanks!
-Christoffer

never mind,

:call setqflist([])

seems to do the trick.

Am 2012-07-07 22:31, schrieb Christoffer Dall:

Question: If you just want to clear the current markers until you perform some action that will change the quickfix buffer (grep, make, etc.), what is the way (if any) to do so?
It shouldn't be necessary. You could either empty the qfl (see :help
:cexpr or :help setqfl()) or, to immediatly see the result, call
QuickfixsignsClear("qfl").

HTH