jsturtevant / ace-jump

Allows for quick movement around the editor screen. Inspired by AceJump for Webstorm and Vim plugin AceJump.
https://marketplace.visualstudio.com/items?itemName=jsturtevant.AceJump
MIT License
47 stars 17 forks source link

Is it possible to work with vsvim to define activation keys in different mode? #17

Closed xarthurx closed 5 years ago

xarthurx commented 5 years ago

Say only in normal mode with a single key?

mgutekunst commented 5 years ago

Thats possible. For example, I bound it to <Space> in normal mode. Here's the line i put into my ~/.vsvimrc

nnoremap <Space> :vsc Tools.InvokeAceJumpCommand<CR>

xarthurx commented 5 years ago

This is great! Thank you very much.