Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim Syntastic: How to find out which syntax checker is currently in use?

Tags:

vim

syntastic

I would like to change a setting or edit a line of code in the Python syntax checker, but Syntastic comes with five of them. How can I find out which one is in use?

like image 380
Dan Ross Avatar asked May 28 '13 20:05

Dan Ross


1 Answers

Syntastic has a built-in function for this. I believe which syntax checkers are available depend on your system.

:SyntasticInfo

Syntastic info for filetype: python
Available checkers: python
Currently active checker(s): python
Press ENTER or type command to continue
like image 79
timss Avatar answered Oct 30 '22 08:10

timss