更改 Tmux 键绑定?
Change Tmux key binding?
是否可以更改 tmux 键绑定以在 tmux 配置文件中显示窗格编号?我想将它从 "q" 更改为 "p"。我正在查看 Tmux 之道,但没有看到有关如何进行此类更改的说明。
在你的 tmux 配置中 (~/.tmux.conf) 添加:
unbind p # to remove current bind
unbind q # to remove original bind
bind p display-panes # bind new ley to action
是否可以更改 tmux 键绑定以在 tmux 配置文件中显示窗格编号?我想将它从 "q" 更改为 "p"。我正在查看 Tmux 之道,但没有看到有关如何进行此类更改的说明。
在你的 tmux 配置中 (~/.tmux.conf) 添加:
unbind p # to remove current bind
unbind q # to remove original bind
bind p display-panes # bind new ley to action