Answers:
没有补丁的GNU Screen <4.01可能不支持垂直分割。
GNU Screen> 4.01支持垂直分割。
该补丁已根据GPLv2许可。有人说GNU中的垂直分割screen
会使应用程序变慢,但是我还没有测试。我使用tmux
(终端多工器)
最新版本的GNU屏幕允许您垂直拆分窗口,而无需任何外部修补程序。这是获取和使用它的一种方法:
./autogen.sh
,./configure
,make
和install
。我对Mountain Lion的依赖没有任何问题。要获得垂直分割,请使用:
C-a | // Create a split
C-a <Tab> // Move to the split
C-a c // Create a new window within the split
我认为这不是像其他人建议的那样改用tmux的原因。
split
,split -v
并focus
在screenrc文件的命令。甚至您也可以将屏幕放置在另一个屏幕中以进行复杂的配置。
C-a |
也不split -v
工作。例如,当我执行split -v
命令时,错误消息是split: no arguments required
在Linux-BASH中查看“带屏幕的分屏显示 ”视频教程。在2:00分钟时,将有一个解决方案。
Ctrl+ A+ S #创建另一个窗口
Ctrl+ A+ Tab#从另一个窗口移动
Ctrl+ A+ c #创建新会话
Ctrl+ A+ | #垂直分割
使用该-v
选项在中split
命令screen
。从联机帮助页:
Split the current region into two new ones. All regions on the display
are resized to make room for the new region. The blank window is dis‐
played on the new region. Splits are made horizontally unless -v is
used. Use the "remove" or the "only" command to delete regions. Use
"focus" to toggle between regions.
split
您指的是哪个命令?
screen
。
C-a |
。
C-a :
(控制a,冒号)。在那里你可以做split
或split -v
。C-a |
是垂直分割的快捷方式。
tmux
改为使用。