kaivalya
kaivalya

Reputation: 4671

Visual Studio 2010 maximize code window shortcut

I am looking for the short cut to maximizing code window.. this can be done by first making the window 'float' then clicking on the maximize icon on top right of the window.. I am not able to find the command for the 'maximize' behavior under options/keyboard commands so that i can assign a key combination or find out what the default is..

Upvotes: 9

Views: 3562

Answers (3)

Rahul
Rahul

Reputation: 77896

Same Shift + Alt + Enter does work here as well.

Upvotes: 17

Darrel Lee
Darrel Lee

Reputation: 2470

The thing I was looking for was for the output window, etc. to go away and give all the window back to the text editor (like ^R in SQL Server Management studio.)

This seems to work for me: Window.AutoHideAll

I'm Using Visual Studio 2013.

Upvotes: 0

Brandon
Brandon

Reputation: 70002

Tools -> Options -> Keyboard -> Use the Window.Float command and bind it to a shortcut.

To return it to being a tabbed document, use the Window.Dock command.

Upvotes: 1

Related Questions