我有这个功能在工作,但在家里不知何故它停止工作。当我尝试使用prefix + w
列出窗口时,我可以使用向上和向下箭头导航窗口。但我无法使用j
和k
。我记得这应该是可能的,但我不知道该怎么做。
这是我的.tmux.conf
set -g default-terminal "screen-256color"
unbind-key C-b
set -g prefix 'C-a'
# splitting windows
bind / split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
set-option -g update-environment "SSH_AUTH_SOCK \
SSH_CONNECTION \
DISPLAY"
# Mouse mode
set-option -g mouse on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'seebi/tmux-colors-solarized'
set -g @colors-solarized 'dark'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
# 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'
我正在使用tmux 2.5
答案 0 :(得分:0)
你错过了mode-keys vi
set-option -gw mode-keys vi # vi style key bindings