Is it possible to map keys in VsVim to Visual Studio commands? For example, is it possible to map gb to View.NavigateBackward ?
gb
View.NavigateBackward
You do this through the _vsvimrc file.
This should do the trick:
nnoremap gb :vsc View.NavigateBackward<CR>
You can even display extension commands, for example from Resharper:
nnoremap gi :vsc Resharper.Resharper_GotoImplementation<CR>
Full documentation is here: https://github.com/jaredpar/VsVim/wiki/VsVim-Nonstandard-Behavior