Jonathan S.
Jonathan S.

Reputation: 5877

Auto-organize Visual Studio Tabs?

Is there any setting in Visual Studio 2008 to group/organize tabs? For example, I'd prefer to have all code-behind files open in a tab next to its .aspx page if that page is open and vice versa. Dragging tabs around really kills my productivity.

Upvotes: 6

Views: 2035

Answers (3)

Sergey Vlasov
Sergey Vlasov

Reputation: 27890

Jonathan,

Tabs Studio (developed by me) add-in can automatically group .aspx and .aspx.cs windows in one tab.

Upvotes: 7

Cristian Diaconescu
Cristian Diaconescu

Reputation: 35641

Check ot this link - it explains how to make the active tab jump to the left-most position, thereby effectively keeping the most used tabs from 'falling off': window tab management in Visual Studio

Upvotes: 3

Michael
Michael

Reputation: 1919

There is no setting for this, but take a look at the documentation for writing visual studio add-ins. This would be a pretty simple one to set up.

Upvotes: 2

Related Questions