Issue
Holding ctrl
and hitting tab
in vscode brings up a list of all open tabs in the current view, and hitting tab
repeatedly advances the selection in this list. Finally, releasing ctrl
activates the tab that is currently selected in the list.
Is there a way to have ctrl+tab
"directly" cycle tabs, ie showing/previewing the content of the selected tab while cycling through the list?
I would like that since sometimes I take notes in files with autogenerated filenames, which are not easily recognizable in the list.
(I'm using Ubuntu 22.04.)
Solution
you can choose any of the following commands:
- View: Open Next Editor:
"key": "ctrl+pagedown", "command": "workbench.action.nextEditor" - View: Open Next Editor in Group:
"key": "ctrl+k ctrl+pagedown", "command": "workbench.action.nextEditorInGroup" - View: Open Next Recently Used Editor:
"command": "workbench.action.openNextRecentlyUsedEditor" - View: Open Next Recently Used Editor In Group:
"command": "workbench.action.openNextRecentlyUsedEditorInGroup"
You can bind any key combo to any of these commands.
Answered By - rioV8 Answer Checked By - David Goodson (WPSolving Volunteer)