Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用:vs在 vim 中分割屏幕时,两个窗口之间有一个栏,它分散了我的注意力并占用了一些屏幕空间。我在屏幕截图中看到它可以删除,但是如何删除呢?
:vs
理想情况下,它看起来像这样:
:set fillchars-=vert:\|
这将摆脱字符,但总会有一个字符边框,例如分隔水平窗口拆分的状态行。虽然可以在 GVIM 中绘制像素细线,但 Vim 试图在其所有化身中保持统一。
您可以通过以下方式更改颜色:
:highlight VertSplit gui=reverse guifg=Red
你不能完全摆脱它。仅以这种颜色突出显示它,使其适合背景/前景,而您不会注意到它。但它仍然会在那里。