Support keyboard remapping
... somehow
Is there a page or file describing what vim commands are already supported? For instance, it seemed that ctrl-F and ctrl-B weren't mapped to page-forward and -back. I'm new to Visual Studio Community (Mac), but I spent many years using VsVim from Windows, and am very excited that a similar extension is available in this environment.
@mzieg - unfortunately there isn't a page or file describing what is available, but you should be able to work it out by looking at the code here and here
The trick to some of the shortcuts (such as <C-f> and <C-b> is that you need to unbind them from whatever they are currently mapped to before they work in XSVim. I haven't found a good way to do this automatically. I need to do a better job of documenting this but just haven't had time yet, sorry!
@mzieg Since 0.38.0 https://github.com/nosami/XSVim/pull/147/files, built in conflicting Visual Studio for Mac commands are automatically disabled, so <C-f> works out of the box.
Wow, thank you!