0

my problem is how to switch tabs(scripts) in visual studio, like we can switch tabs in chrome by applying "Ctrl + 1,2,3" etc.

I tried a lot and I found backward and forward shortcuts in VS by applying "Ctrl+-" & "Ctrl + Shift+-" but sometime it doesn't work.

1 Answers1

1

If you open Tools menu -> Options... -> Environment -> Keyboard you can find a list of available commands and what shortcuts are currently set. Many commands do not have a shortcut assigned.

I don't know about being able to jump to a specific tab such as your example, but I did find the following 2 commands:

Window.NextDocumentWindow (Default Shortcut: Ctrl + F6)

Window.PreviousDocumentWindow (Default Shortcut: Ctrl + Shift + F6)

That will at least allow you to cycle through tabs via the keyboard - tested it out.

B.O.B.
  • 704
  • 4
  • 10