Does anyone know what the keyboard shortcut for jumping from the start of a keyword, such as for
, forEach
, if
, while
etc... is in Visual Studio when your using "vb.net"? I found the following Question, which I thought would do what I was looking for, but it doesn't.
Following a comment from the linked question above, I checked the path:
Tools/Options/Environment/Keyboard
...for the Edit.GotoBrace
command. From what I read, the command should be mapped to the keybinding: CTRL + å in Swedish.
Vb.net
doesn't use braces per se, but in the following example:
For Each Foo in Bar
Do lots of stuff
Next
I would have thought that the same command should jump me from the For Each
to the "Next" but it doesn't do anything. Is there another command (or should that command work but something is broken locally?)