我是tmux的新手。我想在重命名后保持窗口的名称不变。但是在我重命名它之后,当我执行命令时,它们一直在变化。
是否有任何方法可以将它们保存在静态名称中?
正如超级用户link中所建议的,在你的.bashrc或.zshrc中设置以下变量似乎可以解决这个问题:
.bashrc
.zshrc
DISABLE_AUTO_TITLE=true
正如在你的.tmux.conf文件中对主帖子:set-option -g allow-rename off的评论中所示
.tmux.conf
set-option -g allow-rename off
在我的.zshrc文件中,添加以下配置,就解决了这个问题。
# set-window-option -g automatic-rename off set-option -g allow-rename off
注释第一个,并在~/.tmux.conf中设置第二个。
export DISABLE_AUTO_TITLE=true
~/.tmux.conf
这可以在tmux中完成,通过按Ctrl+B,然后按:来弹出命令提示符,并键入:
Ctrl+B
:
:source-file ~/.tmux.conf
或者简单地从壳中:
$ tmux source-file ~/.tmux.conf