ubuntu安装:
sudo apt install tmux
修改配置文件:
vim ~/.tmux.conf
unbind C-b ---> 解绑默认前缀键
set-option -g prefix C-Space ---> 将前缀键设置为 ctrl+空格
bind [ split-window -h ---> 修改垂直分屏后导键为 [
bind ] split-window -v ---> 修改水平分屏后导键为 ]
# pane resizing
bind-key -n M-H resize-pane -L 5
bind-key -n M-J resize-pane -D 5
bind-key -n M-K resize-pane -U 5
bind-key -n M-L resize-pane -R 5
set -g mouse on
修改后使配置生效的方式:tmux source-file ~/.tmux.conf