Привет, я использую vundle на моем vim и устанавливаю плагин tmux. Это когда я вне сеанса tmux
non-tmux я могу видеть имя файла и путь
, но когда я запускаю tmux, я вижу только _zsh_tmux_plugin_run
on-tmux
как я могу изменить это значение на не-tmux, я действительно хочу увидеть путь и имя файла в tmux
Ниже приведен мой tmux.only. conf в папке плагинов tmux
set-option -g default-command "/bin/zsh"
set-option -g default-shell "/bin/zsh"
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
set -g default-terminal "screen-256color"
set -g mouse on
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# scrollback buffer size increase
set -g history-limit 100000
# change window order
bind-key -n C-S-Left swap-window -t -1
bind-key -n C-S-Right swap-window -t +1
# disable window name auto change
set-option -g allow-rename off
# bar color
set -g status-bg black
set -g status-fg white
# toggle pane title visibility
bind T run 'zsh -c "arr=( off top ) && tmux setw pane-border-status \${arr[\$(( \${arr[(I)#{pane-border-status}]} % 2 + 1 ))]}"'
# rename pane
bind t command-prompt -p "(rename-pane)" -I "#T" "select-pane -T '%%'"