Overview Q & A Rating & Review
Navigate Tab Groups
A Visual studio extension for switching to different tab groups.
In this question someone wants to switch between different tab groups in Visual Studio; currently there is no built-in way to do so, so this extension adds a way.
Download from Visual Studio Marketplace
Exposed Commands
Exposes various commands for navigating between tab groups:
Command
Description
Tools.NavigateTabGroups.Right
Moves to tab group to the left of the current group
Tools.NavigateTabGroups.Left
Moves to tab group to the right of the current group
Tools.NavigateTabGroups.Up
Moves to tab group above the current group
Tools.NavigateTabGroups.Down
Moves to tab group below the current group
Tools.NavigateTabGroups.Next
Moves to next tab group in the list.
Tools.NavigateTabGroups.Previous
Moves to previous tab group in the list
It also exposes all of the above via the Tools menu:
It also assigns a default keyboard shortcut to Tools.NavigateTabGroups.Previous
(CTRL+ALT+Left
) and Tools.NavigateTabGroups.Next
(CTRL+ALT+Right
)
Contributors