ChatGPT解决这个技术问题 Extra ChatGPT

How to navigate back to the last cursor position in Visual Studio?

What is the keyboard shortcut navigate back to the last cursor position in Visual Studio?


T
The One and Only ChemistryBlob

https://i.stack.imgur.com/NFAsJ.jpg

It Will not work for red color (-) key. For me it only works for blue color combination.


It in fact doesn't work with numpad 'minus' because it's another key indeed, although the characters be the same
In visual studio 6 ( Visual C++ ) Shortcut key is F2
image is broken
And ctrl + shift + - for forward
@JimAho Only in VS the opposite of "-" is "shift+-"
T
Tharwen

According to Visual C# 2008 Keybinding Reference Poster it is Ctrl + -. The name of the specific keybinding is View.NavigateBackward.

PS: While researching I also found that Ctrl + . is the same as Shift + Alt + F10. Nice!


Whats the binding for 'next cursor position' then?
@Ozkan: Ctrl + Shift + -
@Ozkan I believe means Ctrl-Shift-+
@LosManos, no it’s Ctrl + Shift + - aka Ctrl, Shift and - pressed at the same time.
@Ozkan The binding for 'next cursor position' is ctrl-+ or (as I just learned after a typo) ctrl-shift--
J
Jim Aho

ctrl + - (dash) navigates backward.

ctrl + shift + - (dash) navigates forward.

These settings can be found under Environment -> Keyboard:

https://i.stack.imgur.com/nm0d6.png


Note that the default keyboard settings for the multiple installations i've done overs various versions have always been ctrl + . and ctrl + shift + .. The former (navigate backward) is unaccessible for many nonqwerty keyboards, since you need to press shift to make VS realise that the key you're trying to send is the one with the . symbol on it (it's on the 2nd level). So, my answer is that there's is no default shortcut and you need to define it yourself.
G
Gulzar

For Changing the setting in Visual Studio 2019:

https://i.stack.imgur.com/B0562.png

Search for view.navigate CHOOSE "Text Editor" from the "Use new shortcut in:" drop down menu Select your shortcut

Global doesn't catch for this.


m
mature

For new VS Code(1.28.2)

Back: Ctrl+Alt+- (dash)

Forward: Ctrl+Shift+- (dash)


Note that VS != VS Code. former is the IDE, other is an open source editor with plugins.
J
Johan Boulé

The most generic answers is: there is no working default and you need to define your own keyboard shortcuts for View.NavigateBackward and View.NavigateForward.

Why? For most keyboards, the default shortcut is a broken, unusuable combination because VS badly handles the shift and altGr modifiers. MS did not pay attention to portability and internationalisation so much when they redeveloped VS after version 6, and this is still true today. This bug has been there for way more than a decade, nearly two decades. At this rate, it will never be fixed. And yes, I have filled a bug report, and I'm certainly not the only one.

However, their "VSCode" product line does have better keyboard handling as it doesn't depend on the shift or altGr modifiers to identify the key. For example, when you are in text writing mode and press the key that has the dash symbol, without using shift nor altGr, let's say it writes something else, like number 6. To VSCode when it comes to shortcut handling, that's still the dash key for its purpose. As long as a key has the symbol written on it, whether this is painted as the 1st, 2nd or 3rd level doesn't matter, it just that key.

Of course, it's never a good thing to make the default shortcuts use non-alphanumeric symbols, that's always confusing, whether it works or not. The good mature text editors have known that for a long time and should be taken as examples of things done right. In some ways, VS learned a few good things from emacs with shortcuts that are a sequence of two letters, but ultimately screwed up on other parts with the choice of non-alphanumeric bindings, combined with a broken low-level keyboard handling.


M
Manju

This works for me in Visual Code

Navigate backward Alt+←

Navigate forward Alt+→