vim 鼠标

vim 下有时需要将部分字符拷贝以便在其他地方搜索或者翻译,自然要用到鼠标复制。

vim下鼠标有关的就是下面这句:

set mouse=a
这个是用来开启鼠标功能的。a表示所有模式

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启动了所有模式,这样就屏蔽了鼠标右健功能.

这里我设置为set mouse=v在可视模式下使用鼠标,然后搞定。
如果你知识临时需要只要在命令模式下输入

:set mouse=v

如果想长时间有效,修改vimrc配置文件。
支持夸文件粘贴,这个功能很有用。哈哈

你可能感兴趣的:(vim)