watbywbarif
watbywbarif

Reputation: 7017

Arrange tabs in Visual Studio without mouse

I use Visual Studio 2015 on dual monitor configuration, having main window with code on primary monitor, and other window with code on secondary monitor. Is there a command that can be be used with keyboard shortcut so that i move .cs file opened in one window to the other. I know that i can drag and drop tabs with mouse, but that is too slow and clumsy.

Upvotes: 2

Views: 150

Answers (1)

Vlad Feinstein
Vlad Feinstein

Reputation: 11321

I used my tool FeinCtrl and found the following commands related to document arrangement:

  • Window.MoveToMainDocumentGroup
  • Window.MovetoNextTabGroup
  • Window.MovetoPreviousTabGroup

Unfortunately, dragged-out documents create separate top-level windows that appear to be non-addressable (you can move them back home). Of course, you can bind those commands to some keyboard shortcuts, but that's not exactly what you were asking.

Upvotes: 1

Related Questions