-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode_keybindings.json
More file actions
66 lines (66 loc) · 1.59 KB
/
vscode_keybindings.json
File metadata and controls
66 lines (66 loc) · 1.59 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "ctrl+\\",
"command": "workbench.action.closePanel"
},
{
"key": "cmd+shift+t",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+s s",
"command": "workbench.action.openRecent"
},
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft",
"when": "terminalFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight",
"when": "editorTextFocus"
},
{
"key": "shift+escape",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "ctrl+j",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "ctrl+k",
"command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft",
"when": "editorTextFocus"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight",
"when": "terminalFocus"
},
{
"key": "ctrl+s h",
"command": "workbench.action.moveActiveEditorGroupLeft"
},
{
"key": "ctrl+s l",
"command": "workbench.action.moveActiveEditorGroupRight"
},
{
"key": "alt+tab",
"command": "editor.action.inlineSuggest.commit",
"when": "inlineSuggestionVisible && !editorReadonly"
}
]