Open New Tab Within Tab Stack
-
Thanks for the diagnosis of where this does work, only in the window panel! I agree, the current behaviour is weird and frustrating. I created a workaround using AutoHotKey, with this code to set Ctrl-T as a shortcut (having first deactivated Vivaldi's own Ctrl-T shortcut).
It works by sending a right click to pull up the context menu, and then selecting the first item in that menu, and then triggering enter. Beware, though, that this only works if you have the window panel open, and on the left side of the screen. It is only in the window panel (not the main webpage panel) that the context menu offers New Tab, so the right-click has to be sent to the x,y pixel position 200, 400, which would normally be in the window panel if it's open.
;Make new tab in Vivaldi open within current tab stack (only works with context menu by right mouse click, within the Vivaldi window panel)
#IfWinActive Vivaldi
^t::
SendInput {Click R, 200, 400}
SendInput {Down}
SendInput {Enter}
return -
I would also love to have this option.
Like Killy.MXI suggested it could be a checkbox or even a separate keyboard shortcut. It really breaks the flow that a ctrl+t opens a new tab outside the stack I'm in.
-
Like PaulHeggarty, I've also come up with a little autohotkey script that can simulate this behavior. It doesn't care whether the window panel is open. What it does is:
β’ alt+c to clone the tab (clones open in the same stack)
β’ ctrl+tab to switch to the new tab
β’ alt+home to go to "the new tab page".I experimented with different delays, and this particular delay of 50 milliseconds happened to work for me. If the number is too small, it won't switch to the new tab in time to change it to "the new tab page", so you might have to raise the delay a bit.
Here is the code:
#IfWinActive ahk_exe vivaldi.exe
^t::
Send {Alt Down}c{LAlt Up}
Send {LControl Down}{Tab}{LControl Up}
sleep, 50
Send {LAlt Down}{Home}{LAlt Up}
return -
With the introduction of two-layer tab bar I hope this issue gets more spot light.
I suspect (or I hope at least) more users got a usable tool to organize their tabs and will experience the same pain (it was mostly for the Window panel users before).
And getting this straight will finally have a high priority for the devs. -
Came here to ask this question, I'm glad it's been brought up before. I'm very excited by two-level tab stacks, and hope that this feature can be considered. It seems even weirder now that the tab doesn't open in the current stack.
I've also disabled drag-and-drop tab stacking, and without that, for every new tab, it seems that I have to do a "CTRL-T", and then re-create the tab stack?
All-in-all, this was my favorite way to manage tabs in Firefox before they scrapped the old API and broke the TabGroups extension, so I've been very happy to see it make a comeback!
-
Latest snapshot fixed this for me: https://vivaldi.com/blog/desktop/its-about-time-vivaldi-browser-snapshot-2202-3/
Finally! -
It looks like the 3.7 release included this. I'm so happy this was able to be addressed! Thanks everyone!
-
It doesn't work for me unfortunately. With the option new tab after current, if I have a tab inside a tab stack visible, and I press the + button to add a tab, its added AFTER the tab stack rather than inside, even if I don't have the most right tab selected in the tab stack.
Right-clicking the tab stack and choose New Tab does open it inside the tab stack, but I want to always have the tab open inside the stack I am working so I can have different stacks for different workflows. Now I click new tab, forgot its not in a stack, have to drag it in, and its just a mess....
I do use the new accordeon mode. In 2 row mode, the second plus works as expected.
-
It's the other way around for me. When I hit Ctrl + T (new tab), I want it to create a new tab on the end of the list regardless of which stack it's in. "As Last Tab" would seem like the option for that but it still opens a new tab within a stack if I'm in one. How would I change this behavior?
-
Ppafflick moved this topic from Automotive Feature Requests on
-
Yeah, it would be nice if new tab would respect the focused tab stack also with accordion tabs