Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a vsVim User Guide?

I've just recently downloaded vsVim to use it with Visual Studio 2010 and join the Vi way. But I haven't been able to find information regarding the specific vsVim documentation.

I know how to use Vim (basic use, nothing even intermediate) but I would like to know if there is something that is still missing from the vsVim implementation, or some special feature.

So could anyone point me to a good resource about vsVim?

Thanks for any help

like image 740
Carlos G. Avatar asked Jul 17 '10 05:07

Carlos G.


People also ask

How do I turn off VsVim?

How can I temporarily disable VsVim? VsVim can be temporary disabled by the key sequence Ctrl + Shift + F12 and re-enabled later by the same key sequence.

What is VsVim?

VsVim is a free vim emulator for Visual Studio 2019 through to 2022.

What is Vs Vim?

As the name suggests, VsVim is based on the functionality of the VIM text editor. VIM isn't something picked up as easily as Notepad; it's a powerful tool with a high initial learning curve. This makes it no different than many tools we use every day.

Does Visual Studio have vim mode?

Vim emulation for Visual Studio CodeVSCodeVim is a Vim emulator for Visual Studio Code.


2 Answers

Jared has said that the git issue list is the main place he tracks feature requests and issues - so having a look at requests should give you an idea of what notable features are missing.

like image 63
eddiegroves Avatar answered Sep 22 '22 05:09

eddiegroves


There is a Wiki, which explains things such as (intended) nonstandard behavior. Also, watching the GitHub repository is a good way to learn both what is and isn't implemented in VsVim and also to learn Vim features that you didn't know about. I've certainly learned a number of things about Vim from feature requests that are posted there, etc.

There are many things missing from the VsVim implementation, and there always will be. There are just certain areas of Visual Studio that you can't accurately layer Vim on top of (for example, the mismatch between the way Visual Studio handles documents, windows and tabs and the way that Vim handles buffers, windows and tabs). However, more and more is supported continuously, and you can always submit a pull request. Jared is very friendly and good to work with. I started using VsVim a year and a half ago and already much more is supported then when I started using it.

If you are wondering whether you are doing somethign wrong or whether it just isn't implemented in VsVim, a good thing to do is to pop open Vim and use its :help feature to find out. You can always submit an issue on GitHub, or if you really want to learn Vim in a detailed way, you could work on implementing a feature.

Finally, the documentation is incomplete, but since it is a wiki, you are welcome to contribute to it as you learn.

like image 39
Keith Pinson Avatar answered Sep 22 '22 05:09

Keith Pinson