tmux를 사용하면 창을 전환할 때 한 창의 내용이 다음 창으로 넘어갑니다.
재현하려면:
tmux new;
C-b c; # (create new window)
ls /bin;
C-b n; # (go to next-window)
ls의 출력은 이제 두 개의 창에 표시됩니다.
tmux.conf:
set -g set-clipboard off
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
bind -n S-Left previous-window
bind -n S-Right next-window
bind-key -n C-S-Left swap-window -t -1
bind-key -n C-S-Right swap-window -t +1
bind -n C-h select-window -t 0
bind-key e set-window-option synchronize-panes on \;\
set-window-option pane-active-border-style fg=red \;\
set-window-option pane-border-style fg=yellow \;\
display-message "Sync panes ON"
bind-key E set-window-option synchronize-panes off \;\
set-window-option pane-active-border-style fg=green \;\
set-window-option pane-border-style default \;\
display-message "Sync panes OFF"
bind-key r source-file ~/.tmux.conf \; display-message " # tmux.conf is reloaded"
set -g status-left '#{?client_prefix,#[bg=colour245 fg=colour233 bold],#[fg=colour155]} (#S)'
항상 그런 것은 아니지만 언제 시작되는지 정확히 알 수는 없습니다. 내 생각에 이것은 마우스 사용과 관련이 있을 수 있지만 새 xterm, 새 tmux를 시작할 때도 발생합니다.
저는 Plink를 사용하여 Windows의 Xming에서 xterm에 연결합니다.
인사
사우론