Mishkun / ideavim-sneak

Vim-sneak for IdeaVim!
Other
46 stars 10 forks source link

How to bind only on normal mode or bind custom keys? #14

Closed qwIvan closed 3 years ago

qwIvan commented 3 years ago

Because it is conflict with set surround when S be invoked on visual mode.

Mishkun commented 3 years ago

Hi @qwIvan! You can try to swap set surround and set sneak instructions in your ~/.ideavimrc file. Alternatively you can map your surround plugin action back by adding this to config:

vmap S <Plug>VSurround

This lines maps S in visual mode to call VSurround command of the surround plugin.