-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeybindings.json
More file actions
35 lines (35 loc) · 1005 Bytes
/
keybindings.json
File metadata and controls
35 lines (35 loc) · 1005 Bytes
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
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "cmd+e", "command": "workbench.action.openNextRecentlyUsedEditorInGroup" },
{
"key": "cmd+e",
"command": "workbench.action.quickOpenNavigateNext",
"when": "inQuickOpen"
},
{
"key": "alt+cmd+up",
"command": "workbench.action.navigateUp"
},
{
"key": "alt+cmd+down",
"command": "workbench.action.navigateDown"
},
{
"key": "alt+cmd+left",
"command": "workbench.action.navigateLeft"
},
{
"key": "alt+cmd+right",
"command": "workbench.action.navigateRight"
},
{
"key": "ctrl+alt+p",
"command": "editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus"
},
{
"key": "shift+cmd+space",
"command": "-editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus"
}
]