tmux - 使窗格变大的通用快捷方式

tmux - 使窗格变大的通用快捷方式

Tmux 具有:

:resize-pane -D (Resizes the current pane down)
:resize-pane -U (Resizes the current pane upward)
:resize-pane -L (Resizes the current pane left)
:resize-pane -R (Resizes the current pane right)

如果您在底部窗格中并“调整窗格大小”,您的窗口会变大。如果您在顶部窗格中并“调整窗格大小”,您的窗口会变小。

我想创建一个这样的快捷方式,C-a +只会使当前选定的窗口增大一行,不管这是否意味着将当前窗格向上或向下移动......

我不是 TMUX 专家,因此非常希望得到一些帮助 :-)

答案1

我想这就是你想要的。

将其添加到你的 tmux 配置文件中:

bind-key -n C-S-Up resize-pane -U 15
bind-key -n C-S-Down resize-pane -D 15
bind-key -n C-S-Left resize-pane -L 25
bind-key -n C-S-Right resize-pane -R 25

来源:http://www.mattjmorrison.com/today-i-learned/2014/09/25/learned.html

相关内容