tmux 的前缀绑定快捷键是一个高频使用的快捷键,两个键距离较远,使用不便。
可以将其修改为终端里不常用的 Ctrl + S
在 ~/.tmux.conf 中写入
# Setting the prefix from C-b to C-s
set -g prefix C-s
# Free the original Ctrl-b prefix keybinding
unbind C-b
tmux 的前缀绑定快捷键是一个高频使用的快捷键,两个键距离较远,使用不便。
可以将其修改为终端里不常用的 Ctrl + S
在 ~/.tmux.conf 中写入
# Setting the prefix from C-b to C-s
set -g prefix C-s
# Free the original Ctrl-b prefix keybinding
unbind C-b