MacVim:在启用高级渲染的情况下关闭抗锯齿字体
在 MacVim 中,我使用大小为 10 的 Monaco 字体,该字体在标准 MacVim 配置下不是抗锯齿的。当我在 MacVim 首选项(高级选项卡)中打开高级渲染时,Monaco 10pt 现在是抗锯齿的,这不是我想要的。有没有办法在 MacVim 中关闭字体抗锯齿功能?
With MacVim, I use the Monaco font at size 10, which under the standard MacVim config is NOT anti-aliased. When I turned on Advanced Rendering in MacVim preferences (advanced tab), Monaco 10pt is now anti-aliased, which is not what I want. Is there a way to turn off font anti-aliasing in MacVim?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我只是想调出“guifont”的 vim 帮助。它表明
:set noantialias
应该可以解决问题。我已经确认这有效。I just thought to pull up vim help for "guifont". It shows that
:set noantialias
should do the trick. I've confirmed that this works.我使用
:set noantialias
为 vim 和 macvim 进行设置。I am using
:set noantialias
to set it for both vim and macvim.