vote up 12 vote down star
5

Is it possible to change how ctrl+tab and shift+ctrl+tab work in Visual Studio? I have disabled the popup navigator window because I only want to switch between items in the tab control. My problem is the inconsistency of what switching to the next and previous document do.

Every other program that uses a tab control for open document I have seen uses ctrl+tab to move from left to right and shift+ctrl+tab to go right to left. Visual Studio breaks this with it's jump to the last tab selected. You can never know what document you will end up on and it is never the same way twice.

It is very counter intuitive. Is this a subtle way to encourage everyone to only ever have two document open at once?

flag
2  
+1 this drives me nuts too. – nailitdown Mar 11 at 2:28
"I have disabled the popup navigator window"... How did you turn off the annoying select-window popup? It's so annoying just flickering every time I press Ctrl+Tab. – demoncodemonkey Jul 1 at 21:33
Ah got it, in Tools->Options->Keyboard I remapped Ctrl+Tab from Window.NextDocumentWindowNav to Window.NextDocumentWindow (removed the "Nav"). And the same with Ctrl+Shift+Tab with Window.PreviousDocumentWindowNav. – demoncodemonkey Jul 2 at 9:35
+1, If only there were a decent answer here... – drhorrible Jul 28 at 19:15
@Jeff Cuscutis: did you happen to find a decent solution to this? – Lieven Aug 12 at 14:34
show 1 more comment

8 Answers

vote up 0 vote down check

Hi! This is my first post in Stack Overflow so I'm hoping at least somebody finds it useful. I also got fed up with the most recently used ordering of tabs found in Visual Studio ever since version 2005. There is a way around this and this blogger going by the name of Mr Speaker has the necessary macro code. Navigate to his blog post and make use of his macro. After you apply his macro to your VS you can bind your favorite keyboard shortcuts to them. Also notice the registry fix in the comments for not displaying the macro balloon since they might get annoying after a while. Have fun!

link|flag
It apparently still breaks under some conditions, but this is the clostest one to actually working as desired. – Jeff Cuscutis Sep 25 at 18:34
vote up 0 vote down

I'm 100% in agreement with Jeff.

I had worked on Borland C++ Builder for several years and one of the features I miss most is the 'correct' document tabbing order with Ctrl-Tab. As Jeff said, "The current tab behavior keeps pulling me out of the task and makes me have to pay attention to the tool " is exactly how I feels about this, and I'm very much surprised by the fact that there aren't many people complaining about this.

I think Ctrl-F6 - NextDocumentWindowNav - navigates documents based on the document's last-activated time. This behavior is a lot like how MDI applications used to behave in old days.

With this taken this into account, I usually use Ctrl+F6 to switch between 2 documents (which is pretty handy in switching between .cpp and .h files when working on c++ project) even when there are more than 2 currently opened documents. For example, if you have 10 documents open (Tab1, Tab2, Tab3, ...., Tab10), I click on Tab1 and then Tab2. When I do Ctrl+F6 and release keys, I'll jump to Tab1. Pressing Ctrl+F6 again will take me back to Tab2.

link|flag
vote up 0 vote down

The philosophy of VS tab order is very counter intuitive since the order of the displayed tabs differs from the tab-switching logic, rendering the ordering of the tabs completely useless

So until a better solution arises, change the window layout (in Environment->General) from tabbed-documents to multiple-documents; it will not change the behaviour but reduces the confusion caused by the tabs.

That way you will also find the DocumentWindowNav more useful!

link|flag
vote up 4 vote down

The Next(Previous)DocumentWindow would be fine if next and previous actually was next and previous. It is actually a next and previous from a list you can't see that changes order without telling you. Using the next and previous functionality changes the order of the list so you can't reproduce the behavior.

It drives me crazy that I can't just look at the tabs and ctrl+tab to that tab.

I seem to be the only person annoyed by this random behavior.

link|flag
This "feature" of Visual Studio drives me insane. I have yet to ever find a proper workaround for this. – Matthew Ruston Oct 29 '08 at 17:16
the only person, no. I complain every day – tehp Sep 30 at 13:33
vote up 1 vote down

I guess you want what VSS calls Next(Previous)DocumentWindow. By default, it's on Ctrl(-Shift)-F6 on my VSS 8. On Ctrl(-Shift)-Tab they have Next(Previous)DocumentWindowNav. You can change key assignments via Tools/Options/Keyboard.

link|flag
Ctrl-(Shift-)F6 doesn't get you to the left or right tab. its the same order as Ctrl-Tab but without the annoying window. – shoosh Jul 16 at 22:03
vote up 3 vote down

Let's say I have a few files open. I am working in one and I need to see what is in the next tab to the right. In every other single application on the face of the Earth (hyperbole), ctrl+tab will get me there. In Visual Studio, I have no idea which of the other tabs it will take me to. If I only ever have two documents open, this works great. As soon as you go to three or more, all bets are off as to what tab Visual Studio has decided to send you to.

The problem with this is that I shouldn't have to think about the tool, it should fade into the background, I should be thinking about the task. The current tab behavior keeps pulling me out of the task and makes me have to pay attention to the tool.

link|flag
vote up 2 vote down

I don't use Visual Studio ( yes, really, I don't use it ), but AutoHotKey can remap any hotkey globally or in a particular application:

#IfWinActive Microsoft Excel (application specific remapping)

; Printing area in Excel (@ Ctrl+Alt+A)
^!a::
Send !ade
return

#IfWinActive


$f4::
; Closes the active window (make double tapping F4 works like ALT+F4)
if f4_cnt > 0 
{
    f4_cnt += 1
    return
}

f4_cnt = 1
SetTimer, f4_Handler, 250
return

f4_Handler:
SetTimer, f4_Handler, off

if (f4_cnt >= 2) 	; Pressed more than two times
{ 	
	SendInput !{f4}
} else {
	; Resend f4 to the application
	Send {f4}
}

f4_cnt = 0
return

These are two remappings of my main AutoHotKey script, I think it's an excellent tool for this type of tasks.

link|flag
vote up 0 vote down

Sorry to disagree out of hand, however, I find that the visual studio way of handling tabs very useful! Usually when Im editing multiple files I concentrate on a couple and the tab system allows me to move quickly and easily between all the pages. When it comes to editing different files then Ill just open them up and they'll be the ones being opened by the tab

OK I'll conceeded that it might be different in other versions of VS (I use 2008) to which I cant comment on. The window of open documents that ctrl+tab brigs up is usually more than enough to manage my solution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.