如何在 vi 中更改不同的配色方案?
如何在 vi 中更改不同的配色方案?
How can I change between different color schemes in vi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 vi 中更改不同的配色方案?
How can I change between different color schemes in vi?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以尝试不同的配色方案,如下所示:
https://kb. mediatemple.net/questions/1565/Enabling+vi+syntax+colors#gs
我的问题只是默认配色方案中的深蓝色注释颜色,所以我只是改变了这一点:
或者将浅蓝色更改为青色或其他
you could try different color schemes like this:
https://kb.mediatemple.net/questions/1565/Enabling+vi+syntax+colors#gs
My problem was only deep blue comment color in default color scheme, so I changed just that:
or change lightblue to cyan or whatever
据我所知,普通的 ol' vi 不提供不同的配色方案。但是,如果您使用的是 vim,则可以输入
:colorscheme
。您可以使用选项卡循环浏览已安装的颜色方案。请参阅 http://vim.wikia.com/wiki/Switch_color_schemes 了解更多信息
As far as I know, plain ol' vi doesn't provide different colorschemes. If you are using vim however, you can type
:colorscheme <newcolorscheme>
. You can use tab to cycle through the installed colorschemes.See http://vim.wikia.com/wiki/Switch_color_schemes for more information