Keyboard shortcut to pull Google Chrome tab into its own window

With the Vimium extension for Chrome, Shift+W will move the current tab to a new window.

This was added in version 1.43 (2013-05-18), Vimium on GitHub.


A workaround would be: Ctrl + L, + C, + W, + N, + V, and Enter.

Or

F6, Ctrl + C, Ctrl + N, Ctrl + V, Enter and an optional Alt + Tab, Ctrl + W, Alt + Tab, to close the old tab.

You could automate the whole thing with AutoIt (under Windows) and create a Hotkey for it (here, it's Ctrl + Alt + x):

HotKeySet("^!x", "split_tab")
Func split_tab()
    Send("{F6}^c^n")
    Sleep(999)
    Send("^v{Enter}")
    Send("!{Tab}^w!{Tab}")
EndFunc

I always have an additional application like this running in the background, offering useful keyboard shortcuts which automate and simplify tasks.

Alternatively, you can hit Ctrl + L instead of F6, which would be substantially easier as your hand does not have to leave the home row.


On Mac you can add custom shortcuts for any menu option. The option to detach a tab is named "Move tab to new window" (it has to be written exactly as in the menu, including capitalization of letters), so just add this to the shortcuts under settings (and select Application Google Chrome): enter image description here

And then choose a shortcut, like Cmd+Shift+W or whatever (just make sure it's a unique combination, or it won't work).