DaveDev
DaveDev

Reputation: 42185

How can I close Visual Studio's dockable windows with my keyboard?

It's kind of annoying to have to use my mouse to close the windows that appear when when summoned by my keyboard e.g. I find usages of an object by hitting Shift+F12, or any of the other dockable windows that appear for various other reasons.

Ideally these would close when I hit escape, but this does nothing. Alt+F4 wants to close the entire visual studio.

Is there any keyboard shortcut to close these windows?

To be clear, this is the kind of window I'm referring to: enter image description here

Upvotes: 6

Views: 992

Answers (4)

Madhavan
Madhavan

Reputation: 1

"Shift + Esc" closes the docked window, only if it is pinned and control is on the docked window. I use to pin all the dock windows.

Upvotes: 0

inksmithy
inksmithy

Reputation: 546

According to Default Keyboard Shortcuts in Visual Studio 2015, you can use the following:

  • Shift + Esc - Window.Close (window must have focus)
  • Ctrl + F4 - Window.CloseDocumentWindow to close the current tab

Upvotes: 8

Res
Res

Reputation: 1

  1. Set Focus to docked window (e.g. [Ctrl]+[g] for immediate window)
  2. Press context menu key (at the right side of the space key)
  3. Press the key to hide that window, indicated by _ in the contextmenu (depends on your language)

Upvotes: 0

DaveDev
DaveDev

Reputation: 42185

It appears @inksmithy has answered the question, even though it doesn't work for me. I reckon it's because I'm using ReSharper and he isn't.

For what it's worth, I just discovered Ctrl + Shift + F4 works for me.

I've decided to mark @inksmithy's answer as correct but if that doesn't work for you try my one.

Upvotes: 2

Related Questions