完全禁用 GVim 中的斜体文本
在 GVim 中,我使用一种类似固定系统的字体,看起来不错,但使用斜体文本时它会损坏(字符部分不可读,尤其是最后一个斜体,如果下一个是常规的)。
出于这个原因(并且因为我无论如何都不喜欢斜体文本)我想在 Vim 中完全禁用斜体文本;无需修改任何语法突出显示相关文件。
In GVim I'm using a fixedsys-like font which looks good, but with italic text it breaks (chars partially unreadable, especially the last italic one if the next one is regular).
For this reason (and because I dislike italic text anyway) I'd like to completely disable italic text in Vim; without modifying any syntax highlighting related files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当使用强烈推荐的 Solarized 主题 时,您可以使用以下方法进行配置:
When using the highly recommended Solarized theme, you can configure this using:
语法突出显示是否使用斜体文本由您的颜色方案定义。任何 colorcheme 规则都可以定义
term
、cterm
和/或gui
属性列表,这些属性列表在 :help attr-list。您可以清除相关的颜色方案规则或从中删除italic
属性。例如,如果您的颜色方案中有以下规则,
您只需删除
gui=italic
位即可。您还可以通过设置gui=NONE
指定不使用attr-list
中的任何属性。Whether syntax highlighting uses italic text or not is defined by your colorscheme. Any colorscheme rule can define
term
,cterm
, and/orgui
attribute lists, which are described at :help attr-list. You can either clear the relevant colorscheme rules or remove theitalic
attribute from them.For example, if the following rule is in your colorscheme
you would want to simply remove the
gui=italic
bit. You can also specify not to use any of the attributes fromattr-list
by settinggui=NONE
.当使用高度推荐的 Dracula 主题时,您可以通过将以下内容添加到
~/. vimrc
:来自德古拉的文档
When using the highly recommeded Dracula theme, you can configure this by adding the following to your
~/.vimrc
:From dracula's documentation