- 如果只是临时想关闭一下,直接vim进入命令行模式,使用命令
:set mouse-=a
- 如果是直接觉得不需要这个功能
vim ~/.vimrc
加入该项配置
:set mouse-=a
Vim的set mouse说明
Enable the use of the mouse. Works for most terminals (xterm, Win32 win32-mouse, QNX pterm, *BSD console with sysmouse and Linux console with gpm). For using the mouse in the GUI, see gui-mouse. The mouse can be enabled for different modes: n Normal mode and Terminal modes 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
补充说明
'-='什么意思?
一般使用直接使用’='对其赋值
‘+=’ '-='可以用来向该配置项追加/去除指定值
家目录下没有 .vimrc 文件
不一定有,可以自己建立
可以使用包管理查询Vim相关文件,它会显示Vim参考文件的位置
比如
opkg files vim-fuller | grep vimrc
/usr/share/vim/vimrc
/usr/share/vim/vim82/gvimrc_example.vim
/usr/share/vim/vim82/vimrc_example.vim
有的没的
也有文章说,可以保留命令行模式下的鼠标选择:set mouse=c
同时,:set mouse=
与:set mouse-=a
应该可以实现相同效果