Assign a shortcut for "Next tab" in Visual Studio

17,620

Solution 1

In Visual Studio 2022 it is Window.NextDocumentWindow and Window.PreviousDocumentWindow

Solution 2

In Visual Studio 2010, the menu Tools > Options > Environment > Keyboard: Show Commands Containing: type NextDocumentWindow, lets you find and select the Window.NextDocumentWindow in the list. It shows that the shortcut is Ctrl+F6. This shortcut lets you cycle through currently open documents. Ctrl+Shift+F6 navigates in reverse order.

Edit: I tried also Ctrl+Alt+PgDown and Ctrl+Alt+PgUp shortcuts do about the same thing.

Hope that helps.

Solution 3

From VS 2010: How do I get “next tab”, “prev tab” keyboard shortcut working? :

You should map the Window.NextDocumentWellTab and not View.NextTab and remove it from any other functions it's assigned to. Only mapping it will not work, you also need to unmap from anything else its being used on, apparently.

This is what my keyboard configuration looks like: Keyboard options

Looked into this some more, and it turns you need to install the Productivity Tools. That gives you that NextDocumentWellTab function.

Solution 4

In Visual Studio 2019, the command name for next tab and previous tab is Window.NextTab and Window.PreviousTab respectively.

Share:
17,620

Related videos on Youtube

Otiel
Author by

Otiel

Profile picture credits: http://codegolf.stackexchange.com/a/22326/14595

Updated on September 18, 2022

Comments

  • Otiel
    Otiel over 1 year

    (Using Visual Studio 2010 Express)

    When you do CTRL+Tab on the editor of Visual Studio, it navigates to the next document window (the name of the shortcut is Window.NextDocumentWindowNav). Should you let CTRL key downed, it shows the navigation window where you can see all tool windows and editor tabs opened.
    Without taking in account the navigation window, this shortcut enables to navigate between two tabs: the current one and the last one that had focus.

    I think it's not a very optimized behavior because if you want to set focus on a third tab, you have to let CTRL key down to get the navigation window, then search for your tab, then click on it (or rotate between all tabs with the Tab key).

    I would rather have a shortcut that rotates between opened tabs like any application (browsers like Firefox, IE, ..., Excel, ...) but I couldn't find any shortcut to do that in the Tools window corresponding to the desired behavior.

    Do you know if it is possible to set a such keyboard shortcut?

    EDIT

    It seems that this shortcut is only available through plugins - that means that the Express version is not able to get this function for now.

  • Otiel
    Otiel over 12 years
    Not exactly. CTRL+F6 seems to rotate in a "last visited tab" like the tabs are sorted on the navigation window of the CTRL+Tab shortcut. I would like to rotate between tabs in a "left to right" order.
  • scrat.squirrel
    scrat.squirrel over 12 years
    @Leito: see my edit. please: Ctrl+Alt+PgDown and Ctrl+Alt+PgUp seem to do that in my VS2010...
  • Otiel
    Otiel over 12 years
    Ctrl+Alt+PgDown/up don't have any action by me. Do you see any registered shortcut in the Tools window for these keys? Could you tell me their names? Thx
  • Otiel
    Otiel over 12 years
    "(Using Visual Studio 2010 Express)" => I can't install this plugin.
  • harrymc
    harrymc over 12 years
    Sorry, I never used Express. Although: A VSIX file is nothing else than a glorified zip file, that can be extracted by changing its extension to 'zip'. You might be able to manually install it as a sub-folder of %LocalAppData%\Microsoft\VisualStudio\10.0\Extensions\<Compa‌​ny>\<Product>\<Versi‌​on>. See this article. See also "Installing via MSI" in this article. If Express hopefully looks in there.
  • Otiel
    Otiel over 12 years
    It does not work. VS is telling me that the package Microsoft.VisualStudio.ProPack.ToolsOptionsPackage did not load correctly. I guess it's dead since it wants to access ProPack. Thanks though.
  • harrymc
    harrymc over 12 years
    It seems like you are out of luck with Express. As far as I could find, no one has managed to force-install extensions in it, while NextDocumentWellTab does is only available through an extension.
  • surfasb
    surfasb over 12 years
    @woohoo: CTRL Alt PgDN/UP is part of the Productivity Power Tools. . .
  • Otiel
    Otiel over 12 years
    I'm giving you the bounty for searching to make it work on my Express version.
  • memtha
    memtha over 3 years
    ctrl+alt+pu/d appears to work in 2019 pro without plugins. Not sure if that's part of "pro" or if it was integrated in all newer versions of vs.