-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathkeybindings.json
34 lines (34 loc) · 976 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
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+alt+cmd+p",
"command": "editor.action.marker.next",
"when": "editorFocus && !editorReadonly"
},
{
"key": "tab",
"command": "editor.emmet.action.expandAbbreviation",
"when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus"
},
{
"key": "ctrl+e",
"command": "editor.emmet.action.expandAbbreviation"
},
{
"key": "tab",
"command": "-editor.emmet.action.expandAbbreviation",
"when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus"
},
{
"key": "ctrl+shift+alt+cmd+0",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+shift+alt+cmd+h",
"command": "editor.action.triggerParameterHints"
},
{
"key": "ctrl+shift+alt+cmd+a",
"command": "editor.action.addSelectionToPreviousFindMatch"
}
]