GVim theme italics cuts off character
The italics cause the last character to cut off, making it hard to see.
Is this something that can be fixed 开发者_运维百科without removing the italics style from the theme?
Using GVim with wombat theme on Windows.
EDIT: thanks kemp, it was indeed a font bug.
As Kemp suggested and Marco acknowledged, it's a font issue. Here's how to fix it:
:set guifont=Consolas
Or, in vimrc:
if has("gui_macvim")
set guifont=Menlo
elseif has("gui_running")
set guifont=Consolas
endif
As kemp suggested, the issue was with the font. Switching the font to something other than fixedsys resolved the issue.
精彩评论