Questions tagged [vsvim]

VsVim is a free Visual Studio extension that makes the code editor a vim emulator.

VsVim is a free Visual Studio extension that makes the code editor a vim emulator. Written by Jared Parsons. https://github.com/jaredpar/VsVim

85 questions
5
votes
1 answer

VsVim: Is there a way to dismiss ReSharper intellisense and stay in insert mode?

When using VsVim and ReSharper, I type something that brings up the intellisense window. I want to make it go away, so I press the escape key. The intellisense window is gone, but I'm also back in normal mode. Is there a way to make the intellisense…
Hugh
  • 1,133
  • 1
  • 12
  • 27
5
votes
3 answers

Using intellisense and Vsvim

I recently installed vsvim and was wondering how to do a few things. When intellisense pops in and gives you a few options, Is there a way to choose them without using the arrow keys? Kind of breaks the vim flow. Thanks in advance.
Jason Mirk
  • 283
  • 2
  • 9
4
votes
1 answer

VsVim - Case insensitive search by default

In Visual Studio 2017 with the VSVIM plugin, how do you set the default search to be case insensitive? I found a question that answers it in general VIM, but I don't have a configuration file in a home directory to modify (because it is a plugin in…
Kellen Stuart
  • 7,775
  • 7
  • 59
  • 82
4
votes
2 answers

vim delete lambda variable and block

I have cursor at first t and I want to delete all this code from t to };\n without lines counting. How can I achieve it? Is there cleaner way than d/};$/e? tabControl.PropertyChanged += (s, e) => { ... }; If it matters, this is C#.
George Lanetz
  • 300
  • 5
  • 18
4
votes
1 answer

What are the key bindings for scrolling through an intellisense list in Visual Studio 2015?

What are the key bindings (hot keys) for scrolling through an intellisense list in VS 2015? For example, in the following say I want to scroll down to "Ceil": I've tried the arrow keys, pgup/pgdown, Alt-n/Alt-p, Tab, the arrow keys on Numpad with…
vt5491
  • 2,254
  • 2
  • 22
  • 34
4
votes
1 answer

Can vsvim map keys to ReSharper.ReSharper_ExtendSelection?

I have these maps in my .vsvimrc and they work as expected. I presss z followed by / or Shift+/ and comments are added. map :vsc ReSharper.ReSharper_LineComment map :vsc ReSharper.ReSharper_BlockComment These do not work. map…
Josh Buedel
  • 1,853
  • 16
  • 41
4
votes
1 answer

Mapping ALT '-' (dash/minus) in VsVim

I've tried looking for a solution to my problem, but I can't seem to find anything that works. I'm using VsVim, the Vim plugin for Visual Studio. In my _vsvimrc, I have the following remaps: nnoremap nnoremap The ALT+= remap…
rockzombie2
  • 2,835
  • 4
  • 16
  • 20
4
votes
2 answers

Install VsVim in Visual Studio 2013

When I try to install VsVim in Visual Studio 2013, I receive the error: The installation was unable to install the extension to all the selected products. For more information, click on the install log link at the bottom of the dialog. This…
Jeff Linahan
  • 3,775
  • 5
  • 37
  • 56
3
votes
3 answers

How to change/delete between blocks and braces using VSVIM

I am using vsvim and I think that it is a great tool. The only issue I have is regarding changing/deleting text between braces and parentheses doesn't seem to work. Here some examples I have verified in gvim, but do not seem to work in vsvim: di(…
cweston
  • 11,297
  • 19
  • 82
  • 107
3
votes
1 answer

Microsoft PowerToys key mapping not working in Visual Studio

I am using Visual Studio 2019 with VsVim extension to get Vim functionality. I recently found and tried Microsoft PowerToys to remap my escape key with my caps lock key. This works fine with everything beside Visual Studio. When Visual Studio has…
NadaHacker
  • 43
  • 8
3
votes
2 answers

Can't open the VSVim project

I have a clean install of Visual Studio 2010 with C# and F# installed and I am getting the following error when I try to open the solution cloned from github. D:\projects\VsVim\VsVim\VsVim.csproj : error : The project file …
user568327
  • 540
  • 4
  • 17
3
votes
2 answers

How to go to implementation by vsvim + r#

I want to use r# and vsvim to go to implementation in visual studio. Like command "gd", but maybe "gi". Can i do it?
user6200129
3
votes
1 answer

How can I record a "(" in a macro in vsVim?

I'm trying to record a macro that will type a small chunk of text that contains a parenthesis "(", whenever I try to play the macro it doesn't type the "();" at the end of the line. My guess is that parenthesis in a macro may have some special…
Eduardo Wada
  • 2,606
  • 19
  • 31
3
votes
1 answer

Avoid the escape key in VsVim

Vim has the shortcut CTRL+[ that can be used instead of the escape key ESC. This shortcut is used by Visual Studio to open the Team Explorer. How can I replace this shortcut in order to use it like Vim?
jgarciad
  • 335
  • 2
  • 10
3
votes
1 answer

Tab/Window group movement: (Ctrl-W)(Ctrl-L), etc

I noticed that in the list of supported features for VsVim tab group movement was listed. I've been trying to use CTRL-W CTRL-K and CTRL-W CTRL-L, but I haven't been able to get them to move between tabs. I was wondering if I needed to do anything…
Phaino
  • 501
  • 1
  • 5
  • 10