ssh xshell 连接在vim中无法用 ctrl+insert 复制黏贴
修改.vimrc
set mouse=c
vi的三种模式:命令模式,插入模式,可视模式.鼠标可以启动于各种模式中:
The mouse can be enabled for different modes:
n Normal mode
v Visual mode
i Insert mode
c Command-line mode
h all previous modes when editing a help file
a all previous modes
r for |hit-enter| and |more-prompt| prompt
Normally you would enable the mouse in all four modes with:
:set mouse=a
When the mouse is not enabled, the GUI will still use the mouse for
modeless selection. This doesn’t move the text cursor.
所以配置文件中的set mouse=a启动了所有模式,这样就屏蔽了鼠标右健功能.
vimrc的存放位置:
系统 vimrc 文件:“$VIM/vimrc”
用户 vimrc 文件: “$HOME/.vimrc”
用户 exrc 文件: “$HOME/.exrc”
系统 gvimrc 文件: “$VIM/gvimrc”
用户 gvimrc 文件: “$HOME/.gvimrc”
系统菜单文件:“$VIMRUNTIME/menu.vim”
$VIM 预设值: “/usr/share/vim”
因为/etc/vimrc和~/.vimrc都要被读取,只是~/.vimrc的优先级高。如果~/下没有.vimrc 直接新建一个就好。