我刚刚发现了 :set mouse=a 。令人惊奇的是,它允许我的同事滚动浏览我的 openend 文件。

但事情是这样的:当我左键单击某处时,我真的不希望光标移动。我不想要 :set mouse=a 带来的标准光标(我想保留默认文本光标)。

换句话说:有没有办法让 在 VIm 中启用鼠标滚动 而不启用其他支持鼠标的东西?

谢谢。

编辑 - 其他想法 :我可以绑定(bind) wheel mouse UP 来做与 Page Up 键相同的事情吗?这一定非常棒 !

最佳答案

试试这个映射:

:nnoremap <LeftMouse> <nop>

关于VIm : How to use only the "mouse scrolling" without the other feature of :set mouse=a,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13453320/

10-13 02:58