I've configured python-mode to check manually. So I type :PyLint
and it checks my code, showing the "QuickFix" window and some marks at the side. I can subsequently close the QuickFix window by typing :only
in the other window or so, but how can I clear the side marks?
How can I clear Vim's interface of the PyLint marks?
862 Views Asked by Antonis Christofides At
2
There are 2 best solutions below
0

PyLint marks are made with signs. (:h :sign
)
You can use
:sign unplace *
to remove all the signs in all buffers. This will only be a problem if you want some buffers to keep signs.
If you only want to remove signs in only the current buffer you can use a mapping of Ingo Karkat's answer.
nnoremap <leader>s :execute 'sign unplace * buffer=' . bufnr('')<CR>
Take a look at :h :sign-unplace
for other options.
The plugin uses signs to show the lint errors. If you never want to see them
disables them.
If you want to clear them, AFAICT there's no interface in the plugin for just that. (You could file an enhancement request.) But what should work is clearing all signs of the current buffer:
or