Vim 知道类似xterm的终端(由 TERM 以 开头xterm
,或者对序列的特定响应t_RV
,如果它已定义)支持某些修改键的扩展序列,但它不假设对screen
TERM (你应该在tmux)。
但是,您可以告诉 Vim 这些序列并在 TMUX 存在时启用它们,并且 TERM 以screen
(第一行在tmux下启用(更好)鼠标支持,您可能也喜欢)开始:
if &term =~ '^screen' && exists('$TMUX')
set mouse+=a
" tmux knows the extended mouse mode
set ttymouse=xterm2
" tmux will send xterm-style keys when xterm-keys is on
execute "set <xUp>=\e[1;*A"
execute "set <xDown>=\e[1;*B"
execute "set <xRight>=\e[1;*C"
execute "set <xLeft>=\e[1;*D"
execute "set <xHome>=\e[1;*H"
execute "set <xEnd>=\e[1;*F"
execute "set <Insert>=\e[2;*~"
execute "set <Delete>=\e[3;*~"
execute "set <PageUp>=\e[5;*~"
execute "set <PageDown>=\e[6;*~"
execute "set <xF1>=\e[1;*P"
execute "set <xF2>=\e[1;*Q"
execute "set <xF3>=\e[1;*R"
execute "set <xF4>=\e[1;*S"
execute "set <F5>=\e[15;*~"
execute "set <F6>=\e[17;*~"
execute "set <F7>=\e[18;*~"
execute "set <F8>=\e[19;*~"
execute "set <F9>=\e[20;*~"
execute "set <F10>=\e[21;*~"
execute "set <F11>=\e[23;*~"
execute "set <F12>=\e[24;*~"
endif
正如评论所指出的,您还需要xterm-keys
启用窗口的选项。您可以像这样对所有窗口执行此操作(在您的 中~/.tmux.conf
):
set-option -gw xterm-keys on
(请记住,更改~/.tmux.conf
不会自动加载。要生效,您需要手动运行此命令(在tmux
shell 命令中,或在前缀:
提示符下),或重新加载配置文件source ~/.tmux.conf
(在tmux
shell 命令中,或在前缀:
提示符处),或重新启动服务器(退出所有会话并重新启动tmux))。