vim--vim中右键激活了可视模式

做~自己de王妃 提交于 2021-01-23 22:49:09

在vim的命令行中输入:help mouse   就可以找到答案,查看鼠标的配置方案。

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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!