Is there a built-in or thirdparty solution for switching between open tabs by order using a keybinding and mouse scroll? #2593
-
Hi. For example, I want to go from:
By first and second tabs I mean the order that they are placed in the UI, not order of the time that they got open or something like that. If there are only two tabs, and the second tab is selected, holding the Tab switch should be immediate. I may want to use the Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @babakfp , There is no setting for this, nor I'm aware of any extension that could achieve this as well. The nearest behavior you will get will be using So, I would suggest you to open e feature request in the VS Code repo (https://github.com/microsoft/vscode/issues) so the VS Code team could take a look. BTW, this discussion repo is for extension development only, for now. Hope this helps |
Beta Was this translation helpful? Give feedback.
-
I tried to implement an extension working when in an editor. But the vsc api does not allow to listen to mouseevents (might be a security concern) but I managed to using a separate webview for tracking a gesture. have a look Mouse Gestures for Visual Studio Code |
Beta Was this translation helpful? Give feedback.
Hi @babakfp ,
There is no setting for this, nor I'm aware of any extension that could achieve this as well. The nearest behavior you will get will be using
"workbench.editor.scrollToSwitchTabs": true
, but it does not use keyboard, but only mouse wheel, positioned in the tabs area.So, I would suggest you to open e feature request in the VS Code repo (https://github.com/microsoft/vscode/issues) so the VS Code team could take a look.
BTW, this discussion repo is for extension development only, for now.
Hope this helps