如何停止iterm标签标题的自动更改?
切换为using .bashrc而不是.bash_profile(我不喜欢默认终端如何使用一个配置文件以及实用程序像screen另一个配置文件一样)之后,iterm2的行为发生了变化。以前,当我手动设置选项卡标题时,除非我ssh进入另一台服务器,否则它们将保留在该位置,此时标题将更改为username@otherservername: /location/in/other/servers/filesystem。现在,当我更改选项卡标题时,它们保持不变,直到我在该选项卡中执行第一个命令为止。一旦运行某些命令,选项卡标题就会切换为myusername@mymacname: /my/location/in/my/mac/filesystem。 使用命令行参数echo -ne "\e]1;tab title\a"无济于事。它确实会切换(足够慢,以至于在屏幕上显示标题更改),但是当命令退出时,标题又回到了以前的位置:myusername@mymacname: /my/location/in/my/mac/filesystem。 理想情况下,我希望选项卡标题不要自动切换,包括当我ssh进入另一台服务器时。如果那不可能,我想回到以前的行为:只要我在本地计算机上,就保留我设置的标签标题。能做到吗 这是我的.bashrc文件: # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples # If not running interactively, don't do anything [ -z "$PS1" ] && return # don't put duplicate lines in the …