-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode-keybindings.json
51 lines (51 loc) · 1.23 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
49
50
51
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+w",
"command": "workbench.action.closeActiveEditor",
"when": "editorTextFocus"
},
{
"key": "ctrl+m",
"command": "editor.emmet.action.matchTag"
},
{
"key": "ctrl+shift+k",
"command": "editor.emmet.action.wrapWithAbbreviation"
},
{
"key": "ctrl+shift+n",
"command": "editor.emmet.action.updateTag"
},
{
"key": "ctrl+j",
"command": "editor.action.joinLines"
},
{
"key": "ctrl+shift+.",
"command": "editor.emmet.action.balanceOutward",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+,",
"command": "editor.emmet.action.balanceInward",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+j",
"command": "editor.emmet.action.splitJoinTag"
},
{
"key": "ctrl+alt+.",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+alt+,",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+r",
"command": "workbench.action.debug.restart",
"when": "inDebugMode"
}
]