Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

change background color highlight for errors detected by pylint with ropevim and ropemode installed

Tags:

python

vim

pylint

It changes the background to red, I can't read the text to correct the error!

How can I configure a different highlight? Does it have a setting?

like image 205
user376403 Avatar asked Sep 01 '10 00:09

user376403


1 Answers

I got an red background problem when a begin a string in python with " or '. After configure the spellbad options it seems like good.

highlight clear SpellBad
highlight SpellBad term=standout ctermfg=1 term=underline cterm=underline
highlight clear SpellCap
highlight SpellCap term=underline cterm=underline
highlight clear SpellRare
highlight SpellRare term=underline cterm=underline
highlight clear SpellLocal
highlight SpellLocal term=underline cterm=underline   

Check For Details: http://hacktux.com/vim

like image 97
qingchen Avatar answered Sep 22 '22 00:09

qingchen