-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeybindings.json
40 lines (40 loc) · 1007 Bytes
/
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
// Place your key bindings in this file to override the defaults
[
{
// auto formating the document
"key": "alt+a f",
"command": "editor.action.format",
},
{
// Save all (mac)
"key": "cmd+shift+s",
"command": "saveAll"
},
{
// Save all (linux)
"key": "ctrl+shift+s",
"command": "saveAll"
},
{
// open terminal (mac)
"key": "ctrl+[IntlBackslash]",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminal.active"
},
{
// open terminal (mac)
"key": "cmd+[IntlBackslash]",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminal.active"
},
{
// set focus on terminal
"key": "alt+f t",
"command": "workbench.action.terminal.focus"
},
{
// set focus on terminal
"key": "alt+f e",
"command": "workbench.action.focusActiveEditorGroup",
}
]