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
3
votes
2 answers

How to close all tabs in VsVim

I'm trying out VsVim after using ViEmnu. In ViEmnu :qa will close all tabs, but in VsVim :qa closes Visual Studio. When it is relaunched, all tabs remain open. According to this issue, this is by design. Is there a way of closing all tabs in VsVim,…
Tom Lokhorst
  • 13,658
  • 5
  • 55
  • 71
3
votes
1 answer

Enable text highlighting in VsVim

I really like text highlighting in Vim for searches and Shift-8. Is there anyway to enable it in VsVim on VS 2010 or VS 2012?
hutchonoid
  • 32,982
  • 15
  • 99
  • 104
2
votes
2 answers

How to go to the first line of output in Visual Studio 2010?

When I hit Ctrl-Home in Visual Studio while editing code, I go to the beginning of the document. When I hit Ctrl-Home on the Output Window, Find Results, etc, I jump to the first tab in that tab group (for me, it jumps to Callstack). How do I make…
idbrii
  • 10,975
  • 5
  • 66
  • 107
2
votes
0 answers

Why is ZZ not saving in VsVim 2022?

I just upgraded to Visual Studio 2022 and installed VsVim. Every command I normally use works except ZZ. I expect it to save and close the currently opened file. However, its current behavior is to close the opened file without saving.
redcurry
  • 2,381
  • 2
  • 24
  • 38
2
votes
1 answer

Use ctrl-j and ctrl-k to navigate menus in Visual studio

I normally use vim, but sometimes it's convenient to use Visual Studio 19. I'm trying to keep my keybindings as consistent as possible between the two. In vim I use ctrl-p to open a file by typing its name. I switched visual studio to use the vscode…
dustinroepsch
  • 1,122
  • 1
  • 7
  • 24
2
votes
1 answer

How will behavior differ if I let VS or VsVim handle all conflicting key bindings?

After installing VsVim, Visual Studio displays a message that there are conflicting key bindings between VsVim and Visual Studio. I have two options: Handle all with VsVim Handle all with Visual Studio and a checkbox: Include all scopes I have…
user1283776
  • 19,640
  • 49
  • 136
  • 276
2
votes
0 answers

Saving my marks so that when I close the file it will reopen it in VsVim

I'm using VsVim in visual studio community when I set a mark like mA in a file, after closing that file I can't reopen it by using \`A or 'A even when I wrote the :set viminfo='1000,f1 in my .vimrc file nothing changed. is there a way to save these…
SdSaati
  • 798
  • 9
  • 18
2
votes
0 answers

VsVim & ReSharper, up and down inside Go To Everything/Type popup

I am looking for approach to avoid pressing arrow keys on keyboard when using ReSharper's "Go to Everything / Type" popup. I was able to bind Alt+J and Alt+K to Up and Down in ReSharper's InteliSense popup, but can't figure out what can be done for…
skalinkin
  • 1,024
  • 9
  • 19
2
votes
1 answer

Does Vim emulation for Visual Studio supports plugins?

And if so, how can I install them. I've manged it for gVIM, but can't get it working in VsVim.
Fischermaen
  • 12,238
  • 2
  • 39
  • 56
2
votes
2 answers

What is the VS command to show Intellisense errors?

In Visual Studio, code that has an error is marked with red squiggles. If I hover the mouse cursor over the text, VS displays a popup with the details of the error. I would like to do the same from the keyboard, by using a keybinding. In order to do…
Julien Couvreur
  • 4,473
  • 1
  • 30
  • 40
2
votes
1 answer

How to append at the end of line using VSVIM

I am using vsvim and I think that it is a great tool. But I have a problem. It seems the "A" doesn't work when I type 'A' to append at the end of line. Is there any extra configuration required? Or it is just a bug of VSVIM.
xiao 啸
  • 6,350
  • 9
  • 40
  • 51
2
votes
1 answer

How to have a separate _vimrc for vsvim

To get VsVim to work nicely I need different _vimrc settings to what I use for gVim. Therefore I need a way to load different values for each. Is it possible to have each one load a different _vimrc file? Or worst case, is there any magic I can put…
Martin Capodici
  • 1,486
  • 23
  • 27
2
votes
1 answer

Selecting/deleting text between HTML tags in VsVim

In the Visual Studio extension VsVim, is there a way to select, delete or change the text between two HTML or XML tags? It is possible, for example, to select all text between two speech marks using vi" or delete all text between surrounding square…
Josh Gallagher
  • 5,211
  • 2
  • 33
  • 60
2
votes
1 answer

VsVim: Replacing text within visual highlighted section

Using VsVim, I want to replace all instances of aaa with bbb in the visual text highlighted area. I found a similar question, but specifically for VIM, not VsVim: I've tried selecting the text, then typing :'<,'>s/\%Vaaa/bbb/g ... but I get…
CJBS
  • 15,147
  • 6
  • 86
  • 135
2
votes
2 answers

How to enable C-U/C-D with ReSharper installed

I have recently installed VsVim and ReSharper into VS 2010. The ReSharper hotkeys seem to override those of VsVim. Is there a way to make VsVim commands higher priority than those of ReSharper? More specifically, I would like Ctrl+U and Ctrl+D to…
Dannalieth
  • 257
  • 1
  • 4
  • 13