-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.keyboard.json
96 lines (96 loc) · 2.37 KB
/
vscode.keyboard.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[
{ "key": "alt+shift+1", "command": "workbench.view.explorer" },
{ "key": "alt+shift+2", "command": "workbench.view.search" },
{ "key": "alt+shift+3", "command": "workbench.view.scm" },
{ "key": "alt+shift+4", "command": "workbench.view.debug" },
{ "key": "alt+shift+5", "command": "workbench.view.extensions" },
{ "key": "alt+shift+6", "command": "workbench.view.remote" },
{ "key": "alt+shift+7", "command": "workbench.view.extension.dockerView" },
{ "key": "alt+shift+8", "command": "workbench.view.extension.gitlens" },
{
"key": "alt+shift+9",
"command": "workbench.view.extension.project-manager"
},
{
"key": "alt+1",
"command": "workbench.action.openEditorAtIndex1"
},
{
"key": "alt+2",
"command": "workbench.action.openEditorAtIndex2"
},
{
"key": "alt+3",
"command": "workbench.action.openEditorAtIndex3"
},
{
"key": "alt+4",
"command": "workbench.action.openEditorAtIndex4"
},
{
"key": "alt+5",
"command": "workbench.action.openEditorAtIndex5"
},
{
"key": "alt+6",
"command": "workbench.action.openEditorAtIndex6"
},
{
"key": "alt+7",
"command": "workbench.action.openEditorAtIndex7"
},
{
"key": "alt+8",
"command": "workbench.action.openEditorAtIndex8"
},
{
"key": "alt+9",
"command": "workbench.action.openEditorAtIndex9"
},
{
"key": "cmd+t",
"command": "workbench.action.quickOpen"
},
{
"key": "cmd+p",
"command": "-workbench.action.quickOpen"
},
{
"key": "cmd+t",
"command": "workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "cmd+p",
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "cmd+p",
"command": "workbench.action.showAllSymbols"
},
{
"key": "cmd+t",
"command": "-workbench.action.showAllSymbols"
},
{
"key": "ctrl+alt+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
}
]