-
Notifications
You must be signed in to change notification settings - Fork 399
/
Copy pathPhpStorm.rb
585 lines (566 loc) · 11.4 KB
/
PhpStorm.rb
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
cheatsheet do
title 'PhpStorm'
docset_file_name 'PhpStorm'
keyword 'pstorm'
source_url 'http://cheat.kapeli.com'
category do
id 'General'
entry do
command 'CMD+0-9'
name 'Open corresponding tool window'
end
entry do
command 'CMD+OPTION+Y'
name 'Synchronize'
end
entry do
command 'CMD+SHIFT+F12'
name 'Toggle maximizing editor'
end
entry do
command 'OPTION+SHIFT+F'
name 'Add to favorites'
end
entry do
command 'OPTION+SHIFT+I'
name 'Inspect current file with current profile'
end
entry do
command 'CTRL+§'
name 'Quick switch current scheme'
end
entry do
command 'CTRL+Tab'
name 'Switch between tabs and tool window'
end
entry do
command 'CMD+SHIFT+A'
name 'Find action'
end
entry do
command 'SHIFT+SHIFT'
name 'Search Everywhere'
end
end
category do
id 'Editing'
entry do
command 'CTRL+Space'
name 'Basic code completion'
notes 'Name of any class, method or variable'
end
entry do
command 'CTRL+SHIFT+Space'
name 'Smart code completion'
notes 'Filters the list of methods and variables by expected type'
end
entry do
command 'CMD+SHIFT+Return'
name 'Complete statement'
end
entry do
command 'CTRL+J'
name 'Quick documentation lookup'
end
entry do
command 'SHIFT+F1'
name 'External documentation lookup'
end
entry do
command 'CMD+mouse over code'
name 'Brief info'
end
entry do
command 'CMD+F1'
name 'Show description of error or warning at caret'
end
entry do
command 'CMD+N'
command 'CTRL+N'
command 'CTRL+Return'
name 'Generate code'
notes 'Getters, setters, constructors'
end
entry do
command 'CTRL+O'
name 'Override methods'
end
entry do
command 'CTRL+I'
name 'Implement methods'
end
entry do
command 'CMD+OPTION+T'
name 'Surround with...'
notes '`if..else`, `try..catch`, `for` etc'
end
entry do
command 'CMD+/'
name 'Comment or uncommment with line comment'
end
entry do
command 'CMD+OPTION+/'
name 'Comment or uncommment with block comment'
end
entry do
command 'CTRL+W'
name 'Select successively increasing code blocks'
end
entry do
command 'CTRL+SHIFT+W'
name 'Decrease current selection to previous state'
end
entry do
command 'CTRL+SHIFT+Q'
name 'Context info'
end
entry do
command 'OPTION+Return'
name 'Show intention actions and quick-fixes'
end
entry do
command 'CMD+OPTION+L'
name 'Reformat code'
end
entry do
command 'CTRL+OPTION+O'
name 'Optimize imports'
end
entry do
command 'CTRL+OPTION+I'
name 'Auto-ident lines'
end
entry do
command 'Tab'
name 'Indent selected lines'
end
entry do
command 'SHIFT+Tab'
name 'Unindent selected lines'
end
entry do
command 'CMD+X'
name 'Cut current line or selected block to clipboard'
end
entry do
command 'CMD+C'
name 'Copy current line or selected block to clipboard'
end
entry do
command 'CMD+V'
name 'Paste from clipboard'
end
entry do
command 'CMD+SHIFT+V'
name 'Paste from recent buffers'
end
entry do
command 'CMD+D'
name 'Duplicate current line or selected block'
end
entry do
command 'CMD+Backspace'
name 'Delete line at caret'
end
entry do
command 'CTRL+SHIFT+J'
name 'Smart line join'
end
entry do
command 'CMD+Return'
name 'Smart line split'
end
entry do
command 'SHIFT+Return'
name 'Start new line'
end
entry do
command 'CMD+SHIFT+U'
name 'Toggle case for word at caret or selected block'
end
entry do
command 'CMD+SHIFT+]'
name 'Select until code block end'
end
entry do
command 'CMD+SHIFT+['
name 'Select until code block start'
end
entry do
command 'OPTION+Delete'
name 'Delete to word end'
end
entry do
command 'OPTION+Backspace'
name 'Delete to word start'
end
entry do
command 'CMD+"+"'
name 'Expand code block'
end
entry do
command 'CMD+"-"'
name 'Collapse code block'
end
entry do
command 'CMD+SHIFT+"+"'
name 'Expand all'
end
entry do
command 'CMD+SHIFT+"-"'
name 'Collapse all'
end
entry do
command 'CMD+W'
name 'Close active editor tab'
end
end
category do
id 'Search / Replace'
entry do
command 'CMD+F'
name 'Find'
end
entry do
command 'CMD+G'
name 'Find next'
end
entry do
command 'CMD+SHIFT+G'
name 'Find previous'
end
entry do
command 'CMD+R'
name 'Replace'
end
entry do
command 'CMD+SHIFT+F'
name 'Find in path'
end
entry do
command 'CMD+SHIFT+R'
name 'Replace in path'
end
end
category do
id 'Usage Search'
entry do
command 'OPTION+F7'
name 'Find usage'
end
entry do
command 'CMD+F7'
name 'Find usage in file'
end
entry do
command 'CMD+SHIFT+F7'
name 'Highlight usage in file'
end
entry do
command 'CMD+OPTION+F7'
name 'Show usage'
end
end
category do
id 'Compile and Run'
entry do
command 'CMD+F9'
name 'Build project'
end
entry do
command 'CTRL+R'
name 'Run'
end
entry do
command 'CTRL+OPTION+R'
name 'Select configuration and run'
end
entry do
command 'CTRL+D'
name 'Debug'
end
entry do
command 'CTRL+OPTION+D'
name 'Select cofiguration and debug'
end
entry do
command 'CTRL+SHIFT+R'
name 'Run context configuration from editor'
end
end
category do
id 'Debugging'
entry do
command 'F8'
name 'Step over'
end
entry do
command 'F7'
name 'Step into'
end
entry do
command 'SHIFT+F7'
name 'Smart step into'
end
entry do
command 'SHIFT+F8'
name 'Step out'
end
entry do
command 'OPTION+F9'
name 'Run to cursor'
end
entry do
command 'OPTION+F8'
name 'Evaluate expression'
end
entry do
command 'CMD+OPTION+R'
name 'Resume program'
end
entry do
command 'CMD+F8'
name 'Toggle breakpoint'
end
entry do
command 'CMD+SHIFT+F8'
name 'View breakpoints'
end
end
category do
id 'Navigation'
entry do
command 'CMD+O'
name 'Go to class'
end
entry do
command 'CMD+SHIFT+O'
name 'Go to file'
end
entry do
command 'CMD+OPTION+O'
name 'Go to symbol'
end
entry do
command 'CTRL+Arrow Left'
name 'Go to previous editor tab'
end
entry do
command 'CTRL+Arrow Right'
name 'Go to next editor tab'
end
entry do
command 'F12'
name 'Go back to previous tool window'
end
entry do
command 'Esc'
name 'Go to editor (from tool window)'
end
entry do
command 'SHIFT+Esc'
name 'Hide active or last active Window'
end
entry do
command 'CMD+SHIFT+F4'
name 'Close active tab'
end
entry do
command 'CMD+L'
name 'Go to line'
end
entry do
command 'CMD+E'
name 'Recent files popup'
end
entry do
command 'CMD+OPTION+Arrow Left'
name 'Navigate back'
end
entry do
command 'CMD+OPTION+Arrow Right'
name 'Navigate forward'
end
entry do
command 'CMD+SHIFT+Delete'
name 'Navigate to last edit location'
end
entry do
command 'CMD+OPTION+Arrow Left'
name 'Navigate back'
end
entry do
command 'OPTION+F1'
name 'Select current file or symbol in any view'
end
entry do
command 'CMD+B'
name 'Go to definition'
end
entry do
command 'CMD+OPTION+B'
name 'Go to implementation(s)'
end
entry do
command 'CTRL+SHIFT+B'
name 'Go to type declaration'
end
entry do
command 'CMD+U'
name 'Go to super-method or super-class'
end
entry do
command 'CTRL+Arrow Up'
name 'Go to previous method'
end
entry do
command 'CTRL+Arrow Down'
name 'Go to next method'
end
entry do
command 'CMD+['
name 'Move to code block start'
end
entry do
command 'CMD+]'
name 'Move to code block end'
end
entry do
command 'CMD+F12'
name 'File structure popup'
end
entry do
command 'CTRL+H'
name 'Type hierarchy'
end
entry do
command 'CMD+SHIFT+H'
name 'Method hierarchy'
end
entry do
command 'CTRL+OPTION+H'
name 'Call hierarchy'
end
entry do
command 'F2'
name 'Next highlighted error'
end
entry do
command 'SHIFT+F2'
name 'Previous highlighted error'
end
entry do
command 'F4'
name 'Edit source'
end
entry do
command 'CMD+Arrow Down'
name 'View source'
end
entry do
command 'F3'
name 'Toggle bookmark'
end
entry do
command 'OPTION+F3'
name 'Toogle bookmark with mnemonic'
end
entry do
command 'CTRL+0...CTRL+9'
name 'Go to numbered bookmark'
end
entry do
command 'CMD+F3'
name 'Show bookmarks'
end
end
category do
id 'Refactoring'
entry do
command 'CTRL+T'
name 'Refactor this'
end
entry do
command 'F5'
name 'Copy'
end
entry do
command 'F6'
name 'Move'
end
entry do
command 'CMD+Delete'
name 'Safe delete'
end
entry do
command 'SHIFT+F6'
name 'Rename'
end
entry do
command 'CMD+F6'
name 'Change signature'
end
entry do
command 'CMD+OPTION+N'
name 'Inline'
end
entry do
command 'CMD+OPTION+M'
name 'Extract method'
end
entry do
command 'CMD+OPTION+V'
name 'Introduce variable'
end
entry do
command 'CMD+OPTION+P'
name 'Introduce parameter'
end
entry do
command 'CMD+OPTION+E'
name 'Introduce property'
end
entry do
command 'CMD+OPTION+C'
name 'Introduce constant'
end
entry do
command 'CMD+OPTION+I'
name 'Introduce instance variable'
end
end
category do
id 'VCS / Local History'
entry do
command 'CMD+K'
name 'Commit project to VCS'
end
entry do
command 'CMD+T'
name 'Update project from VCS'
end
entry do
command 'OPTION+SHIFT+C'
name 'View recent changes'
end
entry do
command 'CTRL+V'
name 'VCS quick popup'
end
end
category do
id 'Live Templates'
entry do
command 'CMD+OPTION+J'
name 'Surround with live template'
end
entry do
command 'CMD+J'
name 'Insert live template'
end
end
notes <<-'END'
* Based on the cheat sheet from [PhpStorm Default Keymap](http://www.jetbrains.com/phpstorm/documentation/PhpStorm_ReferenceCard.pdf).
* Converted and extended by [Vexus2](https://github.com/vexus2).
END
end