Vim Syntastic: how do you know which parser is currently in use?

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

+4
source share
1 answer

Syntastic has a built-in function for this. I believe that the available syntax checks 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 
+6
source

Source: https://habr.com/ru/post/1483222/


All Articles