Каждый раз , когда я пытаюсь запустить zsh
внутри tmux
он выходит из строя рения W
zsh-newuser-install: startup files exist, aborting
Он работал безупречно вчера вечером, и внезапно этим утром ничего не работает ...
Я запускаю tmux с этой строки как первый в .zshrc
:
if [ "$TMUX" = "" ]; then tmux; fi
Спасибо!
Мой файл zshrc
:https://github.com/Richard87/oh-my-zsh/blob/master/templates/zshrc.zsh-template
РЕДАКТИРОВАТЬ
Это внезапно начало работать снова ... Я не знаю, что изменилось, или что не так ... поцарапайте, он снова перестал работать
РЕДАКТИРОВАТЬ № 2
На том же компьютере он работает для пользователя root, но не для моего основного пользователя (файлы .zshrc точно такие же, единственное отличие состоит в том, что у моего собственного пользователя есть специальный файл конфигурации tmux:
# set Zsh as your default Tmux shell
set-option -g default-shell /bin/zsh
# Tmux should be pretty, we need 256 color for that
set -g default-terminal "screen-256color"
# Tmux uses a 'control key', let's set it to 'Ctrl-a'
# Reason: 'Ctrl-a' is easier to reach than 'Ctrl-b'
set -g prefix C-a
unbind C-b
# command delay? We don't want that, make it short
set -sg escape-time 1
# Set the numbering of windows to go from 1 instead
# of 0 - silly programmers :|
set-option -g base-index 1
setw -g pane-base-index 1
# Allow us to reload our Tmux configuration while
# using Tmux
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Getting interesting now, we use the vertical and horizontal
# symbols to split the screen
bind | split-window -h
bind - split-window -v