this string has no description
tab-switching-keybindings.json
1{
2 /* Tab switching stuff */
3 {
4 "key": "ctrl+tab",
5 "command": "-workbench.action.quickOpenNavigateNextInEditorPicker",
6 "when": "inEditorsPicker && inQuickOpen"
7 },
8 {
9 "key": "ctrl+tab",
10 "command": "workbench.action.nextEditor"
11 },
12 {
13 "key": "ctrl+shift+tab",
14 "command": "-workbench.action.quickOpenNavigatePreviousInEditorPicker",
15 "when": "inEditorsPicker && inQuickOpen"
16 },
17 {
18 "key": "ctrl+shift+tab",
19 "command": "-workbench.action.quickOpenLeastRecentlyUsedEditorInGroup",
20 "when": "!activeEditorGroupEmpty"
21 },
22 {
23 "key": "ctrl+tab",
24 "command": "-workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup",
25 "when": "!activeEditorGroupEmpty"
26 },
27 {
28 "key": "ctrl+shift+tab",
29 "command": "workbench.action.previousEditor"
30 }
31}