Por que o TMux falha ao inicializar corretamente o oh-my-zsh?

1

Sempre que abro uma nova sessão do TMux, sou saudada com isto:

/home/foo/.oh-my-zsh/oh-my-zsh.sh:3: command not found: env
env_default:1: command not found: env
env_default:1: command not found: grep
env_default:1: command not found: env
env_default:1: command not found: grep

Eu removi meu arquivo .tmux.conf e aqui estão as linhas do arquivo oh-my-zsh.sh :

  1 # Check for updates on initial load...                                                                                                                     
  2 if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
  3   env ZSH=$ZSH DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $ZSH/tools/check_for_upgrade.sh
  4 fi
  5 

Uma sessão de terminal regular não tem esse problema ... Mas, por algum motivo, isso acontece ... bem, devo dizer, ele não exibe esses erros. Ainda pode haver um problema que eu não saiba. Agora que penso nisso, já faz algum tempo desde que o oh-my-zsh pediu para se atualizar.

Além disso, parece que o Vim não está carregando .vimrc no Tmux também ... Isso é um problema de PATH?

Quaisquer pensamentos sobre o que poderia estar errado aqui?

EDITAR Aqui está o meu .tmux.conf

# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix

# split panes using | and -
bind \ split-window -h
bind - split-window -v
unbind '"'
unbind %

# reload config file (change file location to your the tmux.conf you want to use)
#bind r source-file ~/.tmux.conf

# switch panes using Alt-arrow without prefix
bind h select-pane -L
bind l select-pane -R
bind k select-pane -U
bind j select-pane -D

# Enable mouse mode (tmux 2.1 and above)
set -g mouse on

#  Fix lag when switching modes in Vim
#set -sg escape-time 0
    
por testname123 21.01.2017 / 20:03

0 respostas