-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode-keybindings-mac.json
120 lines (120 loc) · 2.6 KB
/
vscode-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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// Place your key bindings in this file to overwrite the defaults
[
{
// Disable quitting Vscode when accidently pressing cmd+q
"key": "cmd+q"
},
{
"key": "cmd+m",
"command": "editor.emmet.action.matchTag"
},
{
"key": "shift+cmd+n",
"command": "editor.emmet.action.updateTag",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+i",
"command": "editor.action.format",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+m",
"command": "editor.emmet.action.wrapWithAbbreviation"
},
{
"key": "shift+cmd+j",
"command": "editor.emmet.action.splitJoinTag",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+.",
"command": "editor.emmet.action.balanceOut",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+,",
"command": "editor.emmet.action.balanceIn",
"when": "editorTextFocus"
},
{
"key": "cmd+r",
"command": "workbench.action.debug.restart",
"when": "inDebugMode"
},
{
"key": "cmd+i",
"command": "workbench.action.terminal.focus"
},
{
"key": "shift+cmd+.",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+cmd+right",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+cmd+down",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "shift+cmd+,",
"command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+cmd+up",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "shift+cmd+g",
"command": "workbench.view.scm",
"when": "gitlens:enabled && config.gitlens.keymap == 'chorded'"
},
{
"key": "ctrl+shift+g",
"command": "-workbench.view.scm",
"when": "gitlens:enabled && config.gitlens.keymap == 'chorded'"
},
{
"key": "shift+cmd+s",
"command": "git.stage"
},
{
"key": "shift+cmd+c",
"command": "git.commit"
},
{
"key": "l",
"command": "list.toggleExpand",
"when": "listFocus && !inputFocus"
},
{
"key": "space",
"command": "-list.toggleExpand",
"when": "listFocus && !inputFocus"
},
{
"key": "space",
"command": "list.select",
"when": "listFocus && !inputFocus"
},
{
"key": "cmd+down",
"command": "-list.select",
"when": "listFocus && !inputFocus"
},
{
"key": "shift+cmd+-",
"command": "extension.getPersonelGithubToken"
},
{
"key": "f2",
"command": "-extension.getPersonelGithubToken"
}
]