9

Is there a way to disable mouse support in file edition on ideavim? It is really annoying that it enters into visual mode each time I click.

It isn't possible to have the same behavior as vim without mouse in terminal, but can I have it on pycharm's ideavim?

4

2 回答 2

6

我也讨厌当我不小心用鼠标拖动时编辑器突然进入可视模式。我最终修改了ideavim源并编译了我自己的版本。我从另一个答案中得到了这个想法https://stackoverflow.com/a/24256022/598781

我只是在 EditorMouseHandler.mouseDragged 方法中立即返回。即将文件中的第 1772 行更改ideavim/src/com/maddyhome/idea/vim/group/MotionGroup.java为:

if (true || !VimPlugin.isEnabled()) return;

此更改可能会产生一些后果,但无论如何我都不使用鼠标选择。

于 2016-01-21T10:58:50.913 回答
1

在 Vim 仿真中不能禁用鼠标支持。但是请注意,IdeaVim 仅在您使用鼠标选择文本时才会切换到可视选择模式。简单的点击不应该让 IdeaVim 进入视觉选择模式。

于 2015-10-06T10:48:22.993 回答