保持tmux窗口名更改后不变

最近使用tmux的过程中,发现在更改tmux 窗口名后,每次更改目录后窗口名字就会更改
搜索后发现一个简单的设置方法vim ~/.tmux.conf添加
set-option -g allow-rename off

或使用命令完成以上操作:
echo "set-option -g allow-rename off">>~/.tmux.conf

如果你想修改正在运行的tmux,执行Ctrl b :,然后再输入命令set-option -g allow-rename offEnter即可.

原文地址:https://www.cnblogs.com/zhuzi8849/p/6279297.html