Reputation: 19334
I accidentally closed the Immediate Window in Visual Studio 2013 Update 3, and can't for the life of me figure out how/where to get it back.
Can someone please point out how I get the Immediate Window open again?
Upvotes: 161
Views: 131520
Reputation: 1655
In addition to what previously was mentioned by @sansa and @Mark Hall, you can also use Quick Launch:
Ctrl + Q
to focus on Quick Launch text box.Immediate
then choose the item that appears: Debug -> Windows -> Immediate
(Ctrl+Alt+I)Update: For more information on Quick Launch you can check it here
Upvotes: 9
Reputation: 11
I was missing my immediate window and none of the above tricks worked. It turned out it was hiding on the bottom and I had to stretch it up.
Upvotes: 1
Reputation: 4741
If you can not see Immediate Window In Debug -> Windows menu:
View > Other Windows > Command Window
immed
commandUpvotes: 21
Reputation: 54532
To get the immediate window back you can go to Debug --> Windows --> Immediate
or you can use CtrlAltI either will work to get it back.
Upvotes: 290