在 tmux 上,“bind”和“bind-key”有什么区别?

在 tmux 上,“bind”和“bind-key”有什么区别?

在 .tmux.conf 上,“bind”和“bind-key”有什么区别?

答案1

“bind” 是“bind-key”的别名,它们具有相同的效果。
您还可以缩短命令,只要只有一个以您写的字母开头的命令即可,例如“bind-k”或“bin”也可以使用。

从手册页中:

bind-key [-cnr] [-t key-table] key command [arguments]
                    (alias: bind)

(...)

 Most commands have a shorter form, known as an alias.  For new-session,
 this is new:

       $ tmux new vi

 Alternatively, the shortest unambiguous form of a command is accepted.

相关内容