Disabling mouse support on ideavim

Is there a way to disable mouse support in ideavim file editor? It is really annoying that he enters visual modeevery time I click.

It is impossible to have the same behavior as vim without a mouse in the terminal, but can I use it on pycharm ideavim?

+4
source share
3 answers

Cannot disable mouse support in Vim emulation. However, note that IdeaVim only switches to visual highlighting mode when you select text with the mouse. Simple clicks should not turn IdeaVim into a visual selection mode.

+1
source

, , . , ideavim . fooobar.com/questions/353921/...

EditorMouseHandler.mouseDragged. 1772 ideavim/src/com/maddyhome/idea/vim/group/MotionGroup.java :

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

, .

+3

, LOTS googling . -, ( IdeaVim 0.46 )

0

Source: https://habr.com/ru/post/1610398/


All Articles