How to stop making tmux auto setting RBENV_VERSION How to stop making tmux auto setting RBENV_VERSION ruby ruby

How to stop making tmux auto setting RBENV_VERSION


tmux itself will never set (or unset) RBENV_VERSION of its own accord. You have some bit of configuration that is causing this.

My guess is that RBENV_VERSION was set when you started your tmux server and that is is now part of the tmux “global environment” (the base environment inherited by all the processes started by tmux). You can check this

tmux show-environment -g | grep RBENV

If it is present there, you can delete it with this command:

tmux set-environment -gu RBENV_VERSION

If you often find yourself starting tmux when RBENV_VERSION is already set (and you do not want it sent “inside” tmux), then you can add the above command to your ~/.tmux.conf file to make sure that it is cleared every time you start a server.

Another possibility is that it is part of your tmux “session environment”; this environment is “layered” atop the global environment to form the environment that is inherited by the processes started for new windows and panes in a session. You can check it with this command (run it inside the session, or add -t sessname to specify a session):

tmux show-environment | grep RBENV

If this is present, you can unset it in a similar way:

tmux set-environment -u RBENV_VERSION

Finally, if the variable is not present in either the global or session environments, then it is probably coming from something in your shell initialization files. By default, tmux starts login shells, so be sure to check the corresponding bits of shell configuration (e.g. .bash_profile, .bash_login, .profile, etc.) as well as any other bits of initialization.