Vim 中的 Shift-Insert 映射

Vim 中的 Shift-Insert 映射

我试图通过在 vimrc 中添加此行将 Shift-Insert 映射到粘贴命令

nnoremap <S-Insert> "+P

但这并没有改变任何事情。

如果我添加其他快捷方式如(<S-I>),效果会很好。

答案1

尝试在 .vimrc 中输入以下几行

" Make shift-insert work like in Xterm
map <S-Insert> <MiddleMouse>
map! <S-Insert> <MiddleMouse>

我遇到了同样的问题,在 .vimrc 中放入这几行之后,shift insert 就起作用了。参考:http://tech.groups.yahoo.com/group/vim/message/104539

答案2

尝试输入以下几行.vimrc

" Paste yanked text
map <S-Insert> <C-r>"
map! <S-Insert> <C-r>"

相关内容