tmux
我在日常使用中在 WSL2 和 Windows 终端预览中使用 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
,但是问题还没有解决。根本原因是什么?欢迎任何解决方法或建议。