-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeybindings.json
304 lines (260 loc) · 5.84 KB
/
keybindings.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
// Place your key bindings in this file to override the defaults
[
/* PANEL */
// Toggle terminal
{
"key": "cmd+j",
"command": "workbench.action.terminal.toggleTerminal"
},
// Move to github copilot chat tab
{
"key": "cmd+l",
"command": "workbench.panel.chat.view.copilot.focus",
"when": "panelFocus"
},
// Foucs on textInput when panel is focused
{
"key": "cmd+;",
"command": "workbench.action.focusActiveEditorGroup",
"when": "panelFocus"
},
/* SEARCH */
// Open find
{
"key": "ctrl+/",
"command": "actions.find",
"when": "editorFocus || editorIsOpen || textInputFocus"
},
/* TEXT MOVEMENT */
// Delete all left
{
"key": "cmd+backspace",
"command": "deleteAllLeft",
"when": "textInputFocus && !editorReadonly"
},
// Undo action
{
"key": "ctrl+u",
"command": "undo",
"when": "textInputFocus && !editorReadonly"
},
// Redo action
{
"key": "ctrl+shift+u",
"command": "redo",
"when": "textInputFocus && !editorReadonly"
},
// Delete one character right
{
"key": "ctrl+'",
"command": "deleteRight",
"when": "textInputFocus && !editorReadonly"
},
// Delete one character left
{
"key": "ctrl+;",
"command": "deleteLeft",
"when": "textInputFocus && !editorReadonly"
},
// Cut line or selection region
{
"key": "cmd+k cmd+k",
"command": "editor.action.clipboardCutAction",
"when": "editorTextFocus"
},
// Paste line or selection region
{
"key": "cmd+y cmd+y",
"command": "editor.action.clipboardPasteAction"
},
/* LINE MOVEMENTS */
// Move curser right by one character
{
"key": "ctrl+l",
"command": "cursorRight",
"when": "textInputFocus"
},
// Move curser left by one character
{
"key": "ctrl+h",
"command": "cursorLeft",
"when": "textInputFocus"
},
// Move curser up by one character
{
"key": "ctrl+k",
"command": "cursorUp",
"when": "textInputFocus"
},
// Move curser down by one character
{
"key": "ctrl+j",
"command": "cursorDown",
"when": "textInputFocus"
},
// Move curser right by one word
{
"key": "alt+l",
"command": "cursorWordRight",
"when": "textInputFocus",
},
// Move curser left by one word
{
"key": "alt+h",
"command": "cursorWordLeft",
"when": "textInputFocus",
},
// Move curser right end of line
{
"key": "cmd+l",
"command": "cursorEnd",
"when": "editorTextFocus"
},
// Move curser left end of line
{
"key": "cmd+h",
"command": "cursorHome",
"when": "editorTextFocus"
},
// Move curser up by function
{
"key": "ctrl+shift+k",
"command": "gotoNextPreviousMember.previousMember",
"when": "editorTextFocus"
},
// Move curser down by function
{
"key": "ctrl+shift+j",
"command": "gotoNextPreviousMember.nextMember",
"when": "textInputFocus",
},
/* LINE EXTRACTOR */
// Duplicate line up
{
"key": "shift+alt+k",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus"
},
// Duplicate line down
{
"key": "shift+alt+j",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
// Move line up
{
"command": "editor.action.moveLinesUpAction",
"key": "alt+k",
"when": "editorTextFocus"
},
// Move line down
{
"key": "alt+j",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
/* PAGE MOVEMENTS */
// Move curser up by one page
{
"key": "ctrl+p",
"command": "cursorPageUp",
"when": "textInputFocus"
},
// Move curser down by one page
{
"key": "ctrl+n",
"command": "cursorPageDown",
"when": "textInputFocus"
},
// Move curser up by function
{
"key": "ctrl+9",
"command": "gotoNextPreviousMember.previousMember",
"when": "editorTextFocus"
},
// Move curser down by function
{
"key": "ctrl+0",
"command": "gotoNextPreviousMember.nextMember",
"when": "editorTextFocus"
},
/* SELECTIONS */
// Select one charcter right
{
"key": "ctrl+shift+l",
"command": "cursorRightSelect",
"when": "editorTextFocus"
},
// Select one charcter left
{
"key": "ctrl+shift+h",
"command": "cursorLeftSelect",
"when": "editorTextFocus"
},
// Select word right
{
"key": "alt+shift+l",
"command": "cursorWordRightSelect",
"when": "textInputFocus"
},
// Select word left
{
"key": "alt+shift+h",
"command": "cursorWordLeftSelect",
"when": "textInputFocus"
},
// Select line right
{
"key": "cmd+shift+l",
"command": "cursorEndSelect",
"when": "textInputFocus",
},
// Select line left
{
"key": "cmd+shift+h",
"command": "cursorHomeSelect",
"when": "textInputFocus",
},
// Select line up
{
"key": "cmd+shift+k",
"command": "cursorUpSelect",
"when": "textInputFocus",
},
// Select line down
{
"key": "cmd+shift+j",
"command": "cursorDownSelect",
"when": "textInputFocus"
},
/* VSCODE DEFAULT DISABLES */
{
"key": "shift+cmd+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+j",
"command": "-workbench.action.search.toggleQueryDetails",
"when": "inSearchEditor || searchViewletFocus"
},
{
"key": "alt+cmd+backspace",
"command": "-deleteFile",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus"
},
{
"key": "cmd+backspace",
"command": "-deleteAllLeft",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+0",
"command": "-workbench.action.lastEditorInGroup"
},
{
"key": "shift+cmd+d",
"command": "-deleteFile",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus"
},
]