更改背景颜色突出显示,以检查安装有 rodvim 和 rodmode 的 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
当 python 中的字符串以 " 或 ' 开头时,我遇到了红色背景问题。配置好拼写错误选项后,它看起来不错。
查看详细信息: http://hacktux.com/vim
I got an red background problem when a begin a string in python with " or '. After configure the spellbad options it seems like good.
Check For Details: http://hacktux.com/vim
我直接给作者发了电子邮件,他给了我有用的回复。 pyflakes 用于错误的突出显示是 SpellBad。他还给了我几个例子,我将与大家分享:
或者对于 gvim 用户:
I e-mailed the author directly and he gave me a helpful response. The highlight pyflakes uses for errors is SpellBad. He also gave me a couple of examples which I will share:
Or for gvim users:
要查看所有突出显示的选项,请打开 vim,进入正常模式并键入
以查看所有模式。
例如
To see all the options for highlighting, open vim, go to normal mode and type
to see all the modes.
e.g.
你看过你的配色方案文件吗?您可以在 colorcheme 文件中查找这些行,并在您看到的位置更改
guibg=COLOR
或ctermbg=COLOR
Have you looked in the file of your colorscheme? You can look for these lines in your colorscheme file and change
guibg=COLOR
orctermbg=COLOR
where you see现在,ale 已经存在,它是一个更高级别的软件,可以防止来自多种来源的错误。
https://github.com/w0rp/ale
Now, ale exists, it's a higher level software to prevent errors from many sources.
https://github.com/w0rp/ale