-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeybindings.json
More file actions
31 lines (31 loc) · 872 Bytes
/
keybindings.json
File metadata and controls
31 lines (31 loc) · 872 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
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft",
"when": "!terminalFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight",
"when": "!terminalFocus"
},
{
"key": "ctrl+k",
"command": "workbench.action.navigateUp",
},
{
"key": "ctrl+j",
"command": "workbench.action.navigateDown",
},
{
"key": "ctrl+h",
"command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
}
]