Reputation: 4671
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
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
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