我刚刚开始使用tmux
。使用vim
运行会话。试图交换vim
中的拆分缓冲区。通常我使用 Ctrl + w + Ctrl + x 。请勿经常使用此组合,因此请勿将其映射到其他任何对象。由于某种原因,我的vim
会话冻结了。不知道发生了什么。我可以执行tmux
命令并在会话之间进行切换,但不能对vim
做任何事情。我的猜测是,上面提到的键盘组合可以在会话中执行某些操作(可能将其锁定)。 Google搜索未显示任何有用的结果。有谁知道我对会话做了什么以及如何解锁它?
这是我的.tmux.conf
# Smart pane switching with awareness of Vim splits.
# See: https://github.com/christoomey/vim-tmux-navigator
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'"
bind-key -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L"
bind-key -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D"
bind-key -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U"
bind-key -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R"
bind-key -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l"
bind-key -T copy-mode-vi C-h select-pane -L
bind-key -T copy-mode-vi C-j select-pane -D
bind-key -T copy-mode-vi C-k select-pane -U
bind-key -T copy-mode-vi C-l select-pane -R
bind-key -T copy-mode-vi C-\ select-pane -l
set -g default-terminal "screen-256color"
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
source-file .lightline.tmux
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
答案 0 :(得分:5)
Ctrl + s 将冻结终端会话,并在发生时按 Ctrl + q 。我将用于拆分跳转的按钮重新映射为 SPACE + h / j / k / l ,因为它更容易且不太可能命中该烦人的冻结命令。