4

我写了这个东西,每当在运行会话中创建一个新窗口时,我想获取一个 Python virtualenv 激活脚本。

可能吗?default-command 选项与 shell 有关,而不是附加命令。

4

1 回答 1

6

我做出以下假设:

  1. 您正在使用bash
  2. 您的.bashrc文件是启动 shell 的每个新窗口的源文件
  3. 您只想在运行 shell 的窗口中启动 virtualenv

将要运行的代码添加到您的.bashrc

if [[ $TMUX ]]; then
    # code here
fi

此代码仅适用于现有tmux会话中的新 shell。

于 2013-05-09T15:14:58.763 回答