설치했습니다Windows SDK용 GitWindows 11에서는 pacman
패키지 설치 프로그램을 설치할 수 있도록 설정합니다 tmux
.
많은 기능이 다른 플랫폼에서와 마찬가지로 작동하지만 PREFIX+를 사용하여 뒤로 스크롤하는 [것은 실제로 작동하지 않습니다.
터미널이 어떻게 스크롤 모드로 전환되는지 볼 수 있지만(오른쪽 상단 모서리에 노란색 카운터) 전혀 움직일 수 없고 정지됩니다 0/XX
. 내가 할 수 있는 일은 스크롤을 멈추는 것 뿐이다 C-c
.
이 문제를 어떻게 해결할 수 있나요?
내 거 .tmux.conf
:
# prefix
unbind C-b
set -g prefix C-t
bind C-t send-prefix
# behavior
set -g escape-time 10 # see https://github.com/tmux/tmux/issues/353#issuecomment-294570322
set -g repeat-time 550 # allows holding down array keys for continuous strokes on MacOS
# theme
set -g default-terminal "screen-256color"
set -g status-bg color234
set -g status-fg white
set-window-option -g window-status-current-style bg=color233
bind § command-prompt -p "(set status-bg)" "set status-bg %1"
# rename
bind $ command-prompt "rename-session '%%'"
bind , command-prompt "rename-window '%%'"
# persistent cwd
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
# reload config
bind r source-file ~/.tmux.conf