Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I disable visual mode in IdeaVIM?

I'm using PyCharm with the IDEAVim plugin. Whenever I highlight text in insert mode and hit backspace, my highlighted text just moves to the left more instead of deleting it.

What can I add to my .ideavimrc to disable visual mode and just delete text if I ever highlight text and hit backspace?

Thanks!

like image 857
oxuser Avatar asked Jun 09 '15 19:06

oxuser


1 Answers

You can remap backspace to d in visual mode.

Put vnoremap <BS> d in your .ideavimrc

like image 56
alexjwong Avatar answered Oct 26 '22 22:10

alexjwong