Hide gutter from Syntastic

syntastic, vim

Solution

These are called signs (`:h sign`). Try

:sign unplace *

Problem

Using the syntax checker Syntastic calls up a gutter which points to all lines with errors in it. Once I am done checking I would like to hide this gutter. The only way I have found is to reopen the same file. I must be missing something, how do I hide the gutter? I have tried `:set foldcolumn=0` to no avail.

Original source