Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a keyboard shortcut to go forward in Visual Studios?

In Visual Studios when traversing code you can click on a symbol and right-click "Go To Definition". The result is that you can see the definition of the symbol. Then you can return to the symbol by using keyboard shortcut ctrl+-. (For more info see this question here.)

Is there a way to go forward? How?

I find this to be a useful feature in other IDEs so I figured Visual Studios would have it and I just don't know how.

like image 490
Trevor Boyd Smith Avatar asked Nov 30 '25 02:11

Trevor Boyd Smith


1 Answers

Ctrl + Shift + - will navigate forward.

You can configure keyboard bindings in Tools -> Options, then Under "General" the "Keyboard" section. The two commands you are referring to are View.NavigateBackward and View.NavigateForward

like image 159
heavyd Avatar answered Dec 05 '25 19:12

heavyd