我绑定了f
键以在tmux的当前窗格中查找单词。如何将查找窗口绑定到其他键?我还想做其他事情,例如命名窗口等。我开始设置tmux配置的方法是使用google搜索所需的功能并将其复制到tmux conf中。是否有关于如何自行完成所有操作的文档。
如何提出bind-key s copy-mode \; send-key ?
或bind-key C-a send-prefix
之类的配置。
我尝试添加bind-key f find-window
,希望它可以将f
绑定到find-window
。但不起作用
谢谢
答案 0 :(得分:1)
Here is a list of the default tmux commands。如您所见,f的默认绑定不是bind-key f find-window
而是bind-key f command-prompt "find-window '%%'"
其余的问题还不清楚。您可以vim ~/.tmux.conf
并添加所需的任何命令,例如bind-key C-a send-prefix
。该行在我的tmux.conf中,并且工作正常。
一种可能是更改后您不会重新加载配置文件(默认情况下,tmux不会在现有Windows上执行此操作)。您可以使用prefix
+ :source-file ~/.tmux.conf
重新加载配置文件。您可以在配置中添加命令以使其更容易进行调整:
bind-key R source-file ~/.tmux.conf \; display-message "Config reloaded..."