-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-keybindings.json
48 lines (48 loc) · 1.21 KB
/
vscode-keybindings.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
// VS Code user keyboard shortcuts (defaults are an empty file)
[
// Integrated terminal navigation whether terminal is focused or not (no need for this to be included in user setting "terminal.integrated.commandsToSkipShell".)
{
"key": "ctrl+shift+cmd+]",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+cmd+[",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+cmd+1",
"command": "workbench.action.terminal.focusAtIndex1"
},
{
"key": "ctrl+cmd+2",
"command": "workbench.action.terminal.focusAtIndex2"
},
{
"key": "ctrl+cmd+3",
"command": "workbench.action.terminal.focusAtIndex3"
},
{
"key": "ctrl+cmd+4",
"command": "workbench.action.terminal.focusAtIndex4"
},
{
"key": "ctrl+cmd+5",
"command": "workbench.action.terminal.focusAtIndex5"
},
{
"key": "ctrl+cmd+6",
"command": "workbench.action.terminal.focusAtIndex6"
},
{
"key": "ctrl+cmd+7",
"command": "workbench.action.terminal.focusAtIndex7"
},
{
"key": "ctrl+cmd+8",
"command": "workbench.action.terminal.focusAtIndex8"
},
{
"key": "ctrl+cmd+9",
"command": "workbench.action.terminal.focusAtIndex9"
}
]