tmux
私は日常的にWSL2とWindows Terminal PreviewでUbuntuを使用しています。コピーモードのキーはctrl-p
数ヶ月間うまく機能しましたが、今日Windowsが突然停止した後にWindowsコンピュータを再起動しましたが、コピーモードctrl-p
のキーはctrl-n
カーソルを移動しなくなりました。私が確認した内容は次のとおりです。
- 手動構成ファイルの変更なし
- tmux コピーモード 左右のキーは正常に動作します。
ctrl-p
ctrl-n
端末に履歴コマンドを表示するために使用できます。ctrl-p
ctrl-n
vimではうまくいきますctrl-p
ctrl-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
が、まだ問題は解決されていません。根本原因は何ですか?どんな回避策や提案でも歓迎します。