-
Notifications
You must be signed in to change notification settings - Fork 2
/
keybindings.mac.json
90 lines (90 loc) · 1.87 KB
/
keybindings.mac.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[
{
"key": "cmd+left",
"command": "workbench.action.navigateBack"
},
{
"key": "cmd+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+PageDown",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+left",
"command": "moveActiveEditor",
"args": {
"to": "left"
}
},
{
"key": "ctrl+PageUp",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+shift+right",
"command": "moveActiveEditor",
"args": {
"to": "right"
}
},
{
"key": "ctrl+shift+down ctrl+shift+down",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+up ctrl+shift+up",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+shift+pagedown",
"command": "workbench.action.terminal.focus",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+pageup",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "f5",
"command": "workbench.action.debug.selectandstart",
"when": "debuggersAvailable && debugState == 'inactive'"
},
{
"key": "shift+f5",
"command": "-workbench.action.debug.stop",
"when": "inDebugMode"
},
{
"key": "cmd+o",
"command": "workbench.action.gotoSymbol"
},
{
"key": "shift+cmd+o",
"command": "-workbench.action.gotoSymbol"
},
{
"key": "cmd+g",
"command": "workbench.action.gotoLine"
},
{
"key": "ctrl+g",
"command": "-workbench.action.gotoLine"
},
{
"key": "cmd+r",
"command": "editor.action.startFindReplaceAction",
"when": "editorFocus || editorIsOpen"
},
{
"key": "alt+cmd+f",
"command": "-editor.action.startFindReplaceAction",
"when": "editorFocus || editorIsOpen"
},
{
"key": "cmd+t cmd+e",
"command": "workbench.action.toggleEditorWidths"
}
]