-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathkeybindings.json
More file actions
20 lines (20 loc) · 845 Bytes
/
keybindings.json
File metadata and controls
20 lines (20 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[
{ "key": "ctrl+d", "command": "editor.action.peekDefinition" },
{
"key": "ctrl+d",
"command": "editor.closeTestPeek",
"when": "testing.isInPeek && !config.editor.stablePeek || testing.isPeekVisible && !config.editor.stablePeek"
},
{ "key": "ctrl+n", "command": "editor.action.rename" },
{ "key": "ctrl+z", "command": "workbench.action.terminal.focus" },
{
"key": "ctrl+z",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{ "key": "ctrl+m", "command": "workbench.action.toggleEditorWidths" },
{ "key": "ctrl+\\", "command": "workbench.action.splitEditor" },
{ "key": "ctrl+h", "command": "workbench.action.navigateLeft" },
{ "key": "ctrl+l", "command": "workbench.action.navigateRight" },
{ "key": "ctrl+w", "command": "workbench.action.closeEditorsAndGroup" }
]