-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode_keybindings.json
More file actions
47 lines (47 loc) · 1.24 KB
/
vscode_keybindings.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+k",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+-",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.navigateForward"
},
{
"key": "shift+alt+t",
"command": "workbench.action.quickOpenTerm"
},
{
"key": "alt+meta+t",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+2",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+1",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+5",
"command": "workbench.files.action.showActiveFileInExplorer"
}
]