How to disable visual mode in IdeaVIM?

I am using PyCharm with the IDEAVim plugin. Whenever I select the text in insert mode and hit back, my selected text just moves to the left more rather than deleting it.

What can I add to my .ideavimrc to turn off visual mode and just remove the text if I ever select the text and hit backspace?

Thank!

+3


source to share


2 answers


You can reassign backspace to d

in visual mode.



Place vnoremap <BS> d

in.ideavimrc

+4


source


This is currently not possible. Feel free to report IdeaVim issue tracker .



0


source







All Articles