tmux ctrl-p 스크롤이 이제 작동하지 않습니다

tmux ctrl-p 스크롤이 이제 작동하지 않습니다

tmux나는 일상적으로 WSL2와 Windows Terminal Preview에서 우분투를 사용합니다. 복사 모드의 키는 ctrl-p몇 달 동안 잘 작동했지만 오늘 Windows가 갑자기 중단된 후 Windows 컴퓨터를 다시 시작했는데 복사 모드 ctrl-p의 키가 ctrl-n더 이상 커서를 이동하지 않았습니다. 내가 확인한 내용은 다음과 같습니다.

  • 수동 구성 파일 변경 없음
  • tmux 복사 모드 왼쪽 및 오른쪽 키가 정상적으로 작동합니다.
  • ctrl-pctrl-n터미널에 기록 명령을 표시하는 데 사용할 수 있습니다.
  • ctrl-pctrl-nvim에서는 잘 작동 합니다
  • ctrl-pctrl-n매뉴얼 페이지에서는 잘 작동 합니다
  • ctrl-space또한 tmux 복사 모드에서는 작동하지 않습니다(텍스트 선택을 시작할 수 없음).

현재 ~/.tmux.conf파일:

#### COLOUR (Solarized 256)

# default statusbar colors
set-option -g status-style fg=colour136,bg=colour235 #yellow and base02

# default window title colors
set-window-option -g window-status-style fg=colour244,bg=default #base0 and default
#set-window-option -g window-status-style dim

# active window title colors
set-window-option -g window-status-current-style fg=colour166,bg=default #orange and default
#set-window-option -g window-status-current-style bright

# pane border
set-option -g pane-border-style fg=colour235 #base02
set-option -g pane-active-border-style fg=colour240 #base01

# message text
set-option -g message-style fg=colour166,bg=colour235 #orange and base02

# pane number display
set-option -g display-panes-active-colour colour33 #blue
set-option -g display-panes-colour colour166 #orange

# clock
set-window-option -g clock-mode-colour colour64 #green

# bell
set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"

내 tmux에 표시된 현재 키 바인딩은 다음 C-B ?과 같습니다.

여기에 이미지 설명을 입력하세요.

재설치도 해보았 tmux으나 아직 문제가 해결되지 않았습니다. 근본 원인은 무엇입니까? 어떤 해결 방법이나 제안이라도 환영합니다.

관련 정보