I am kind of new to VIM, i am still learning it. I would like to achive something like in most IDEs, to make VIM underline my mistakes with some color (red for example).
I found syntastic, because everyone recommends it. I installed it, it works "properly" i guess, but i dont see any error highlight, neither underline. I have the "default setting" stuff in my .vimrc:
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 0
let g:syntastic_check_on_wq = 0
And i also added
let g:syntastic_enable_signs=1
Still no highlight, no underline on mistakes. I am usually coding in python, so that is what i would like to see:
class some_calass(self)
self.somevar = 0
And to higligh/underline the "class" line, because i forget the ":" at the end.
If i use
:SyntasticCheck
I get the normal Syntastic window with the corresponding errors in a new split tab, and a "ruler" pops up in the left side with red ">>" markings at the error, however i would like to avoid them both, thats why i switched off the
let g:syntastic_check_on_open = 0
option. I would only like a highlight/underline function on the errors at all the time.
Thanks for the help!