编辑:启用鼠标的问题vim
似乎是特定于gnome-terminal
(版本3.4.1.1-1;我正在使用gnome 3后备模式)。如果运行xterm
,vim
默认情况下将禁用in的鼠标支持,并且我可以选择启用它(:set mouse=a
我从不这样做)并禁用它(:set mouse=
)。相比之下,当我在vim
中运行时gnome-terminal
,默认情况下会启用鼠标支持,并且无法禁用它(:set mouse=
无效)。除了更改终端仿真器以外,是否还有解决方案?
我想完全禁用中的鼠标支持vim
。我正在vim
通过gnome-terminal
版本3.4.1.1-1 运行版本2:7.3.547-3。以下命令,无论是直接在vim中执行还是添加到我的.vimrc
文件中,均无法禁用鼠标支持:
set mouse =
set mouse =""
在阅读了vim手册并在线发布后,这两个命令中的一个或两个都应该起作用。vim手册特别指出以下内容
'mouse' string (default "", "a" for GUI, MS-DOS and Win32)
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.
我正在使用一台笔记本电脑,每次我的手刷触控板时,vim中的光标位置都会突然移动。