拆分vim窗口

前端之家收集整理的这篇文章主要介绍了拆分vim窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在同一窗口中安装 vim和控制台?例如,我将 vim窗口分成多个窗口(垂直或水平).我想要的是在左侧有代码窗口,在右侧有解释器或控制台或其他任何东西,所以我可以轻松地在它们之间切换.这是如何运作的?那里有什么东西吗?
您可能正在寻找GNU Screen.

从这个tutorial

Splitting the screen in half
horizontally

Screen has the ability to split the
window into two or more half
horizontal windows. This feature will
enable you,for example,to work in a
half screen,while viewing the system
resources (“top”) in the remaining
half.

To split the screen in two,first
create two screen sessions. Then press
Ctrl+a S which will split the screen
in half,giving you a session on the
top that you’re already using and a
blank session at the bottom.

To move to the bottom half,press Ctrl+a,then the TAB key.

原文链接:https://www.f2er.com/bash/385955.html

猜你在找的Bash相关文章