-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheatsheet.html
5480 lines (5477 loc) · 264 KB
/
cheatsheet.html
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>cheatsheet</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="cheatsheet.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<h1 id="user.letter">user.letter</h1>
<blockquote>
<p>command word user.letter</p>
</blockquote>
<blockquote>
<p><strong>air</strong> <em>a</em></p>
<p><strong>bat</strong> <em>b</em></p>
<p><strong>cap</strong> <em>c</em></p>
<p><strong>drum</strong> <em>d</em></p>
<p><strong>each</strong> <em>e</em></p>
<p><strong>fine</strong> <em>f</em></p>
<p><strong>gust</strong> <em>g</em></p>
<p><strong>harp</strong> <em>h</em></p>
<p><strong>sit</strong> <em>i</em></p>
<p><strong>jury</strong> <em>j</em></p>
<p><strong>crunch</strong> <em>k</em></p>
<p><strong>look</strong> <em>l</em></p>
<p><strong>made</strong> <em>m</em></p>
<p><strong>near</strong> <em>n</em></p>
<p><strong>odd</strong> <em>o</em></p>
<p><strong>pit</strong> <em>p</em></p>
<p><strong>quench</strong> <em>q</em></p>
<p><strong>red</strong> <em>r</em></p>
<p><strong>sun</strong> <em>s</em></p>
<p><strong>trap</strong> <em>t</em></p>
<p><strong>urge</strong> <em>u</em></p>
<p><strong>vest</strong> <em>v</em></p>
<p><strong>whale</strong> <em>w</em></p>
<p><strong>plex</strong> <em>x</em></p>
<p><strong>yank</strong> <em>y</em></p>
<p><strong>zip</strong> <em>z</em></p>
</blockquote>
<h1 id="user.number_key">user.number_key</h1>
<blockquote>
<p>command word user.number_key</p>
</blockquote>
<blockquote>
<p><strong>zero</strong> <em>0</em></p>
<p><strong>one</strong> <em>1</em></p>
<p><strong>two</strong> <em>2</em></p>
<p><strong>three</strong> <em>3</em></p>
<p><strong>four</strong> <em>4</em></p>
<p><strong>five</strong> <em>5</em></p>
<p><strong>six</strong> <em>6</em></p>
<p><strong>seven</strong> <em>7</em></p>
<p><strong>eight</strong> <em>8</em></p>
<p><strong>nine</strong> <em>9</em></p>
</blockquote>
<h1 id="user.modifier_key">user.modifier_key</h1>
<blockquote>
<p>command word user.modifier_key</p>
</blockquote>
<blockquote>
<p><strong>alt</strong> <em>alt</em></p>
<p><strong>alter</strong> <em>alt</em></p>
<p><strong>control</strong> <em>ctrl</em></p>
<p><strong>troll</strong> <em>ctrl</em></p>
<p><strong>shift</strong> <em>shift</em></p>
<p><strong>sky</strong> <em>shift</em></p>
<p><strong>super</strong> <em>super</em></p>
<p><strong>command</strong> <em>cmd</em></p>
<p><strong>option</strong> <em>alt</em></p>
</blockquote>
<h1 id="user.special_key">user.special_key</h1>
<blockquote>
<p>command word user.special_key</p>
</blockquote>
<blockquote>
<p><strong>end</strong> <em>end</em></p>
<p><strong>enter</strong> <em>enter</em></p>
<p><strong>escape</strong> <em>escape</em></p>
<p><strong>home</strong> <em>home</em></p>
<p><strong>insert</strong> <em>insert</em></p>
<p><strong>pagedown</strong> <em>pagedown</em></p>
<p><strong>pageup</strong> <em>pageup</em></p>
<p><strong>space</strong> <em>space</em></p>
<p><strong>tab</strong> <em>tab</em></p>
<p><strong>wipe</strong> <em>backspace</em></p>
<p><strong>junk</strong> <em>backspace</em></p>
<p><strong>delete</strong> <em>backspace</em></p>
<p><strong>forward delete</strong> <em>delete</em></p>
<p><strong>page up</strong> <em>pageup</em></p>
<p><strong>page down</strong> <em>pagedown</em></p>
</blockquote>
<h1 id="user.symbol_key">user.symbol_key</h1>
<blockquote>
<p>command word user.symbol_key</p>
</blockquote>
<blockquote>
<p><strong>dot</strong> <em>.</em></p>
<p><strong>point</strong> <em>.</em></p>
<p><strong>quote</strong> <em>’</em></p>
<p><strong>question</strong> <em>?</em></p>
<p><strong>apostrophe</strong> <em>’</em></p>
<p><strong>L square</strong> <em>[</em></p>
<p><strong>left square</strong> <em>[</em></p>
<p><strong>square</strong> <em>[</em></p>
<p><strong>R square</strong> <em>]</em></p>
<p><strong>right square</strong> <em>]</em></p>
<p><strong>slash</strong> <em>/</em></p>
<p><strong>backslash</strong> **</p>
<p><strong>minus</strong> <em>-</em></p>
<p><strong>dash</strong> <em>-</em></p>
<p><strong>equals</strong> <em>=</em></p>
<p><strong>plus</strong> <em>+</em></p>
<p><strong>tilde</strong> <em>~</em></p>
<p><strong>bang</strong> <em>!</em></p>
<p><strong>down score</strong> *_*</p>
<p><strong>underscore</strong> *_*</p>
<p><strong>paren</strong> <em>(</em></p>
<p><strong>L paren</strong> <em>(</em></p>
<p><strong>left paren</strong> <em>(</em></p>
<p><strong>R paren</strong> <em>)</em></p>
<p><strong>right paren</strong> <em>)</em></p>
<p><strong>brace</strong> <em>{</em></p>
<p><strong>left brace</strong> <em>{</em></p>
<p><strong>brack</strong> <em>{</em></p>
<p><strong>bracket</strong> <em>{</em></p>
<p><strong>left bracket</strong> <em>{</em></p>
<p><strong>r brace</strong> <em>}</em></p>
<p><strong>right brace</strong> <em>}</em></p>
<p><strong>r brack</strong> <em>}</em></p>
<p><strong>r bracket</strong> <em>}</em></p>
<p><strong>right bracket</strong> <em>}</em></p>
<p><strong>angle</strong> <em><</em></p>
<p><strong>left angle</strong> <em><</em></p>
<p><strong>less than</strong> <em><</em></p>
<p><strong>rangle</strong> <em>></em></p>
<p><strong>R angle</strong> <em>></em></p>
<p><strong>right angle</strong> <em>></em></p>
<p><strong>greater than</strong> <em>></em></p>
<p><strong>star</strong> ***</p>
<p><strong>hash</strong> <em>#</em></p>
<p><strong>percent</strong> <em>%</em></p>
<p><strong>caret</strong> <em>^</em></p>
<p><strong>amper</strong> <em>&</em></p>
<p><strong>pipe</strong> <em>|</em></p>
<p><strong>dubquote</strong> <em>“</em></p>
<p><strong>double quote</strong> <em>“</em></p>
<p><strong>dollar</strong> <em>$</em></p>
<p><strong>pound</strong> <em>£</em></p>
<p>**<code>** *</code>*</p>
<p><strong>,</strong> <em>,</em></p>
<p><strong>back tick</strong> <em>`</em></p>
<p><strong>grave</strong> <em>`</em></p>
<p><strong>comma</strong> <em>,</em></p>
<p><strong>period</strong> <em>.</em></p>
<p><strong>full stop</strong> <em>.</em></p>
<p><strong>semicolon</strong> <em>;</em></p>
<p><strong>colon</strong> <em>:</em></p>
<p><strong>forward slash</strong> <em>/</em></p>
<p><strong>question mark</strong> <em>?</em></p>
<p><strong>exclamation mark</strong> <em>!</em></p>
<p><strong>exclamation point</strong> <em>!</em></p>
<p><strong>asterisk</strong> ***</p>
<p><strong>hash sign</strong> <em>#</em></p>
<p><strong>number sign</strong> <em>#</em></p>
<p><strong>percent sign</strong> <em>%</em></p>
<p><strong>at sign</strong> *<span class="citation"
data-cites="*">@*</span></p>
<p><strong>and sign</strong> <em>&</em></p>
<p><strong>ampersand</strong> <em>&</em></p>
<p><strong>dollar sign</strong> <em>$</em></p>
<p><strong>pound sign</strong> <em>£</em></p>
</blockquote>
<h1 id="user.arrow_key">user.arrow_key</h1>
<blockquote>
<p>command word user.arrow_key</p>
</blockquote>
<blockquote>
<p><strong>down</strong> <em>down</em></p>
<p><strong>left</strong> <em>left</em></p>
<p><strong>right</strong> <em>right</em></p>
<p><strong>up</strong> <em>up</em></p>
</blockquote>
<h1 id="user.punctuation">user.punctuation</h1>
<blockquote>
<p>command word user.punctuation</p>
</blockquote>
<blockquote>
<p>**<code>** *</code>*</p>
<p><strong>,</strong> <em>,</em></p>
<p><strong>back tick</strong> <em>`</em></p>
<p><strong>grave</strong> <em>`</em></p>
<p><strong>comma</strong> <em>,</em></p>
<p><strong>period</strong> <em>.</em></p>
<p><strong>full stop</strong> <em>.</em></p>
<p><strong>semicolon</strong> <em>;</em></p>
<p><strong>colon</strong> <em>:</em></p>
<p><strong>forward slash</strong> <em>/</em></p>
<p><strong>question mark</strong> <em>?</em></p>
<p><strong>exclamation mark</strong> <em>!</em></p>
<p><strong>exclamation point</strong> <em>!</em></p>
<p><strong>asterisk</strong> ***</p>
<p><strong>hash sign</strong> <em>#</em></p>
<p><strong>number sign</strong> <em>#</em></p>
<p><strong>percent sign</strong> <em>%</em></p>
<p><strong>at sign</strong> *<span class="citation"
data-cites="*">@*</span></p>
<p><strong>and sign</strong> <em>&</em></p>
<p><strong>ampersand</strong> <em>&</em></p>
<p><strong>dollar sign</strong> <em>$</em></p>
<p><strong>pound sign</strong> <em>£</em></p>
</blockquote>
<h1 id="user.function_key">user.function_key</h1>
<blockquote>
<p>command word user.function_key</p>
</blockquote>
<blockquote>
<p><strong>F one</strong> <em>f1</em></p>
<p><strong>F two</strong> <em>f2</em></p>
<p><strong>F three</strong> <em>f3</em></p>
<p><strong>F four</strong> <em>f4</em></p>
<p><strong>F five</strong> <em>f5</em></p>
<p><strong>F six</strong> <em>f6</em></p>
<p><strong>F seven</strong> <em>f7</em></p>
<p><strong>F eight</strong> <em>f8</em></p>
<p><strong>F nine</strong> <em>f9</em></p>
<p><strong>F ten</strong> <em>f10</em></p>
<p><strong>F eleven</strong> <em>f11</em></p>
<p><strong>F twelve</strong> <em>f12</em></p>
</blockquote>
<h1 id="formatters">formatters</h1>
<blockquote>
<p>command word user.formatters<br />
<strong>all cap</strong>
<code>EXAMPLE OF FORMATTING WITH ALL CAP</code></p>
<p><strong>all down</strong>
<code>example of formatting with all down</code></p>
<p><strong>camel</strong> <code>exampleOfFormattingWithCamel</code></p>
<p><strong>dotted</strong>
<code>example.of.formatting.with.dotted</code></p>
<p><strong>dub string</strong>
<code>"example of formatting with dub string"</code></p>
<p><strong>dunder</strong>
<code>__example__offormattingwithdunder</code></p>
<p><strong>hammer</strong>
<code>ExampleOfFormattingWithHammer</code></p>
<p><strong>kebab</strong>
<code>example-of-formatting-with-kebab</code></p>
<p><strong>mock</strong>
<code>ExAmPlE oF FoRmAtTiNg wItH MoCk</code></p>
<p><strong>packed</strong>
<code>example::of::formatting::with::packed</code></p>
<p><strong>padded</strong>
<code>example of formatting with padded</code></p>
<p><strong>slasher</strong>
<code>/example/of/formatting/with/slasher</code></p>
<p><strong>smash</strong> <code>exampleofformattingwithsmash</code></p>
<p><strong>snake</strong>
<code>example_of_formatting_with_snake</code></p>
<p><strong>spongebob</strong>
<code>ExAmPlE oF FoRmAtTiNg wItH SpOnGeBoB</code></p>
<p><strong>string</strong>
<code>'example of formatting with string'</code></p>
<p><strong>title</strong>
<code>Example of Formatting With Title</code></p>
</blockquote>
<h1 id="password">1password</h1>
<ul>
<li><p><strong>password new</strong>
<code>user.password_new()</code></p></li>
<li><p><strong>password dup</strong>
<code>user.password_duplicate()</code></p></li>
<li><p><strong>password edit</strong>
<code>user.password_edit()</code></p></li>
<li><p><strong>password delete</strong>
<code>user.password_delete()</code></p></li>
</ul>
<h1 id="password-global">1password global</h1>
<ul>
<li><p><strong>password fill</strong>
<code>user.password_fill()</code></p></li>
<li><p><strong>password show</strong>
<code>user.password_show()</code></p></li>
</ul>
<h1 id="amethyst">amethyst</h1>
<ul>
<li><p><strong>window next</strong>
<code>key("alt-shift-j")</code></p></li>
<li><p><strong>window previous</strong>
<code>key("alt-shift-k")</code></p></li>
<li><p><strong>window full</strong>
<code>key("alt-shift-d")</code></p></li>
<li><p><strong>window tall</strong>
<code>key("alt-shift-a")</code></p></li>
<li><p><strong>window middle</strong>
<code>key("alt-shift-</code>“)`</p></li>
<li><p><strong>window move main</strong>
<code>key("alt-shift-enter")</code></p></li>
<li><p><strong>window grow</strong>
<code>key("alt-shift-l")</code></p></li>
<li><p><strong>window shrink</strong>
<code>key("alt-shift-h")</code></p></li>
<li><p><strong>window reevaluate</strong>
<code>key("alt-shift-z")</code></p></li>
</ul>
<h1 id="anaconda">anaconda</h1>
<ul>
<li><p><strong>anaconda</strong> <code>"conda "</code></p></li>
<li><p><strong>anaconda help</strong>
<code>"conda --help\n"</code></p></li>
<li><p><strong>anaconda version</strong>
<code>"conda --version\n"</code></p></li>
<li><p><strong>anaconda environment list</strong>
<code>"conda env list\n"</code></p></li>
<li><p><strong>anaconda environment create</strong>
<code>"conda env create -f "</code></p></li>
<li><p><strong>anaconda environment remove</strong>
<code>"conda env remove -n "</code></p></li>
<li><p><strong>anaconda activate</strong>
<code>"conda activate "</code></p></li>
<li><p><strong>anaconda clean</strong>
<code>"conda clean "</code></p></li>
<li><p><strong>anaconda compare</strong>
<code>"conda compare "</code></p></li>
<li><p><strong>anaconda config</strong>
<code>"conda config "</code></p></li>
<li><p><strong>anaconda create</strong>
<code>"conda create "</code></p></li>
<li><p><strong>anaconda info</strong>
<code>"conda info "</code></p></li>
<li><p><strong>anaconda init</strong>
<code>"conda init "</code></p></li>
<li><p><strong>anaconda install</strong>
<code>"conda install "</code></p></li>
<li><p><strong>anaconda list</strong>
<code>"conda list "</code></p></li>
<li><p><strong>anaconda package</strong>
<code>"conda package "</code></p></li>
<li><p><strong>anaconda remove</strong>
<code>"conda remove "</code></p></li>
<li><p><strong>anaconda uninstall</strong>
<code>"conda uninstall "</code></p></li>
<li><p><strong>anaconda run</strong> <code>"conda run "</code></p></li>
<li><p><strong>anaconda search</strong>
<code>"conda search "</code></p></li>
<li><p><strong>anaconda update</strong>
<code>"conda update "</code></p></li>
<li><p><strong>anaconda upgrade</strong>
<code>"conda upgrade "</code></p></li>
<li><p><strong>anaconda build</strong>
<code>"conda build "</code></p></li>
<li><p><strong>anaconda convert</strong>
<code>"conda convert "</code></p></li>
<li><p><strong>anaconda debug</strong>
<code>"conda debug "</code></p></li>
<li><p><strong>anaconda develop</strong>
<code>"conda develop "</code></p></li>
<li><p><strong>anaconda environment</strong>
<code>"conda env "</code></p></li>
<li><p><strong>anaconda index</strong>
<code>"conda index "</code></p></li>
<li><p><strong>anaconda inspect</strong>
<code>"conda inspect "</code></p></li>
<li><p><strong>anaconda metapackage</strong>
<code>"conda metapackage "</code></p></li>
<li><p><strong>anaconda render</strong>
<code>"conda render "</code></p></li>
<li><p><strong>anaconda server</strong>
<code>"conda server "</code></p></li>
<li><p><strong>anaconda skeleton</strong>
<code>"conda skeleton "</code></p></li>
<li><p><strong>anaconda verify</strong>
<code>"conda verify "</code></p></li>
</ul>
<h1 id="discord">discord</h1>
<ul>
<li><p><strong>[channel] mentions last</strong>
<code>user.discord_mentions_last()</code></p></li>
<li><p><strong>[channel] mentions next</strong>
<code>user.discord_mentions_next()</code></p></li>
<li><p><strong>oldest unread</strong>
<code>user.discord_oldest_unread()</code></p></li>
<li><p><strong>toggle pins</strong>
<code>user.discord_toggle_pins()</code></p></li>
<li><p><strong>toggle inbox</strong>
<code>user.discord_toggle_inbox()</code></p></li>
<li><p><strong>toggle (members | member list)</strong>
<code>user.discord_toggle_members()</code></p></li>
<li><p><strong>pick emoji</strong>
<code>user.discord_emoji_picker()</code></p></li>
<li><p><strong>pick (jif | gif | gift)</strong>
<code>user.discord_gif_picker()</code></p></li>
<li><p><strong>mark inbox channel read</strong>
<code>user.discord_mark_inbox_read()</code></p></li>
<li><p><strong>[toggle] (mute | unmute)</strong>
<code>user.discord_mute()</code></p></li>
<li><p><strong>[toggle] (deafen | undeafen)</strong>
<code>user.discord_deafen()</code></p></li>
<li><p><strong>answer call</strong>
<code>user.discord_answer_call()</code></p></li>
<li><p><strong>decline call</strong>
<code>user.discord_decline_call()</code></p></li>
</ul>
<h1 id="eclipse">eclipse</h1>
<ul>
<li><p><strong>please [<user.text>]</strong> `key(ctrl-3)
insert(user.text or ““)</p>
<pre><code> # Sidebar`</code></pre></li>
<li><p><strong>bar explore</strong>
<code>key(alt-shift-w p)</code></p></li>
<li><p><strong>bar outline</strong>
<code>key(alt-shift-q o)</code></p></li>
<li><p><strong>panel output</strong>
<code>key(alt-shift-q) sleep(200ms) key(c)</code></p></li>
<li><p><strong>panel problems</strong>
<code>key(alt-shift-q) sleep(200ms) key(x)</code></p></li>
<li><p><strong>panel errors</strong>
<code>key(alt-shift-q) sleep(200ms) key(l)</code></p></li>
<li><p><strong>panel breakpoints</strong>
<code>key(alt-shift-q) sleep(200ms) key(b)</code></p></li>
<li><p><strong>panel search</strong>
<code>key(alt-shift-q) sleep(200ms) key(s)</code></p></li>
<li><p><strong>panel variables</strong> `key(alt-shift-q) sleep(200ms)
key(v) # panel switch: # panel terminal:</p>
<pre><code> # Settings`</code></pre></li>
<li><p><strong>show settings</strong> <code>key(alt-w p)</code></p></li>
<li><p><strong>show shortcuts</strong>
<code>key(ctrl-shift-l)</code></p></li>
<li><p><strong>file hunt [<user.text>]</strong>
<code>key(ctrl-shift-r) sleep(50ms) insert(text or "") # file copy path: # file create sibling:</code></p></li>
<li><p><strong>file create</strong> <code>key(ctrl-n)</code></p></li>
<li><p><strong>file open folder</strong>
<code>key(alt-shift-w x)</code></p></li>
<li><p><strong>file rename</strong>
<code>key(alt-shift-w p enter f2)</code></p></li>
<li><p><strong>file reveal</strong>
<code>key(alt-shift-w p enter)</code></p></li>
<li><p><strong>imports fix</strong>
<code>key(ctrl-shift-o)</code></p></li>
<li><p><strong>refactor rename</strong>
<code>key(alt-shift-r)</code></p></li>
<li><p><strong>refactor this</strong>
<code>key(alt-shift-i)</code></p></li>
<li><p><strong>(go declaration | follow)</strong>
<code>key(f3)</code></p></li>
<li><p><strong>go back</strong> <code>key(alt-left)</code></p></li>
<li><p><strong>go forward</strong> <code>key(alt-right)</code></p></li>
<li><p><strong>go marks</strong> <code>key(alt-end)</code></p></li>
<li><p><strong>toggle mark</strong>
<code>key(ctrl-alt-b down enter)</code></p></li>
<li><p><strong>go next mark</strong>
<code>key(alt-pagedown)</code></p></li>
<li><p><strong>go last mark</strong>
<code>key(alt-pageup)</code></p></li>
<li><p><strong>break point</strong>
<code>key(ctrl-shift-b)</code></p></li>
<li><p><strong>step over</strong> <code>key(f6)</code></p></li>
<li><p><strong>debug step into</strong> <code>key(f5)</code></p></li>
<li><p><strong>debug step out [of]</strong>
<code>key(f7)</code></p></li>
<li><p><strong>debug continue</strong> <code>key(f8)</code></p></li>
<li><p><strong>copy line down</strong>
<code>key(ctrl-alt-down)</code></p></li>
<li><p><strong>copy line up</strong>
<code>key(ctrl-alt-up)</code></p></li>
</ul>
<h1 id="file-manager">file manager</h1>
<ul>
<li><p><strong>title force</strong>
<code>user.file_manager_refresh_title()</code></p></li>
<li><p><strong>manager show</strong>
<code>user.file_manager_toggle_pickers()</code></p></li>
<li><p><strong>manager close</strong>
<code>user.file_manager_hide_pickers()</code></p></li>
<li><p><strong>manager refresh</strong>
<code>user.file_manager_update_lists()</code></p></li>
<li><p><strong>go <user.system_path></strong>
<code>user.file_manager_open_directory(system_path)</code></p></li>
<li><p><strong>go back</strong>
<code>user.file_manager_go_back()</code></p></li>
<li><p><strong>go forward</strong>
<code>user.file_manager_go_forward()</code></p></li>
<li><p><strong>(go parent | daddy)</strong>
<code>user.file_manager_open_parent()</code></p></li>
<li><p><strong>follow numb <number_small></strong>
<code>directory = user.file_manager_get_directory_by_index(number_small - 1) user.file_manager_open_directory(directory)</code></p></li>
<li><p><strong>follow {user.file_manager_directories}</strong>
<code>user.file_manager_open_directory(file_manager_directories)</code></p></li>
<li><p><strong>(select|cell) folder
{user.file_manager_directories}</strong>
<code>user.file_manager_select_directory(file_manager_directories)</code></p></li>
<li><p><strong>open <number_small></strong>
<code>file = user.file_manager_get_file_by_index(number_small - 1) user.file_manager_open_file(file)</code></p></li>
<li><p><strong>folder numb <number_small></strong>
<code>directory = user.file_manager_get_directory_by_index(number_small - 1) user.file_manager_select_directory(directory)</code></p></li>
<li><p><strong>file numb <number_small></strong>
<code>file = user.file_manager_get_file_by_index(number_small - 1) user.file_manager_select_file(file)</code></p></li>
<li><p><strong>file {user.file_manager_files}</strong>
<code>user.file_manager_select_file(file_manager_files)</code></p></li>
<li><p><strong>(select|cell) file {user.file_manager_files}</strong>
<code>user.file_manager_select_file(file_manager_files)</code></p></li>
<li><p><strong>folder new <user.text></strong>
`user.file_manager_new_folder(text)</p>
<pre><code> #show properties`</code></pre></li>
<li><p><strong>properties show</strong>
<code>user.file_manager_show_properties()</code></p></li>
<li><p><strong>terminal here</strong>
<code>user.file_manager_terminal_here()</code></p></li>
<li><p><strong>folder next</strong>
<code>user.file_manager_next_folder_page()</code></p></li>
<li><p><strong>folder last</strong>
<code>user.file_manager_previous_folder_page()</code></p></li>
<li><p><strong>file next</strong>
<code>user.file_manager_next_file_page()</code></p></li>
<li><p><strong>file last</strong>
<code>user.file_manager_previous_file_page()</code></p></li>
</ul>
<h1 id="firefox">firefox</h1>
<ul>
<li><p><strong>tab search</strong>
<code>browser.focus_address() insert("% ")</code></p></li>
<li><p><strong>tab search <user.text></strong>
<code>browser.focus_address() insert("% {text}") key(down)</code></p></li>
</ul>
<h1 id="gdb">gdb</h1>
<ul>
<li><p><strong>until <number></strong>
<code>"until {number}"</code></p></li>
<li><p><strong>force clear all break points</strong>
<code>insert("d br\n") insert("y\n")</code></p></li>
<li><p><strong>break [on] clipboard</strong> `insert(“break”)
key(ctrl-shift-v) key(enter)</p>
<pre><code> # information`</code></pre></li>
<li><p><strong>list [source]</strong> <code>"list\n"</code></p></li>
<li><p><strong>info source</strong>
<code>"info source\n"</code></p></li>
<li><p><strong>print</strong> <code>"p "</code></p></li>
<li><p><strong>print [variable] <user.text></strong>
<code>"p {text}"</code></p></li>
<li><p><strong>print hex</strong> <code>"p/x "</code></p></li>
<li><p><strong>print hex [variable] <user.text></strong>
<code>"p/x {text}"</code></p></li>
<li><p><strong>print string</strong> <code>"p/s "</code></p></li>
<li><p><strong>hex dump <number> bytes</strong>
<code>"x/{number}bx "</code></p></li>
<li><p><strong>hex dump <number> (half|short) words</strong>
<code>"x/{number}hx "</code></p></li>
<li><p><strong>hex dump <number> (d|long) words</strong>
<code>"x/{number}dx "</code></p></li>
<li><p><strong>hex dump <number> quad words</strong>
<code>"x/{number}gx "</code></p></li>
<li><p><strong>hex dump</strong> <code>"x/100gx "</code></p></li>
<li><p><strong>hex dump highlighted</strong>
<code>insert("x/100gx ") edit.copy() edit.paste() key(enter)</code></p></li>
<li><p><strong>hex dump clipboard</strong> `insert(“x/100gx”)
edit.paste() key(enter)</p>
<pre><code> # execution`</code></pre></li>
<li><p><strong>source</strong> <code>"source \t\t"</code></p></li>
<li><p><strong>(list|show|info) display</strong>
<code>"info display\n"</code></p></li>
<li><p><strong>display assembly line</strong>
<code>"display /i $pc\n"</code></p></li>
<li><p><strong>display source</strong> <code>"display "</code></p></li>
<li><p><strong>enable display <number_small></strong>
<code>"enable display {number_small}\n"</code></p></li>
<li><p><strong>disable display <number_small></strong>
<code>"disable display {number_small}\n"</code></p></li>
<li><p><strong>undisplay</strong> <code>"undisplay\n"</code></p></li>
<li><p><strong>(list|show|info) local</strong>
<code>"info local "</code></p></li>
<li><p><strong>(list|show|info) local typed</strong>
<code>"info local -t "</code></p></li>
<li><p><strong>(list|show|info) variable</strong>
<code>"info variable "</code></p></li>
<li><p><strong>(list|show|info) variable typed</strong>
<code>"info variable -t "</code></p></li>
<li><p><strong>(list|show|info) locals</strong>
<code>"info local\n"</code></p></li>
<li><p><strong>(list|show|info) variables</strong>
<code>"info variables\n"</code></p></li>
<li><p><strong>info threads</strong>
<code>"info threads\n"</code></p></li>
<li><p><strong>restart [program]</strong> <code>"r\n"</code></p></li>
<li><p><strong>continue</strong> <code>"c\n"</code></p></li>
<li><p><strong>back trace</strong> <code>"bt\n"</code></p></li>
<li><p><strong>debug quit</strong> <code>"quit\n"</code></p></li>
<li><p><strong>debug force quit</strong>
<code>"quit\ny\n"</code></p></li>
<li><p><strong>(show|info) (inf|inferiors)</strong>
<code>"info inferiors\n"</code></p></li>
<li><p><strong>inferior <number_small></strong>
<code>"inferior {number_small}\n"</code></p></li>
<li><p><strong>inferior</strong> <code>"inferior "</code></p></li>
<li><p><strong>resume main (inf|inferior)</strong>
<code>insert("inferior 1\n") insert("c\n")</code></p></li>
<li><p><strong>resume [from] (inf|inferior)
<number_small></strong> `insert(“inferior {number_small}”)
insert(“c”)</p>
<pre><code> # arguments`</code></pre></li>
<li><p><strong>set args</strong> <code>"set args "</code></p></li>
<li><p><strong>show follow (fork|forks) [mode]</strong>
<code>"show follow-fork-mode\n"</code></p></li>
<li><p><strong>[set] follow (fork|forks) [mode] child</strong>
<code>"set follow-fork-mode child\n"</code></p></li>
<li><p><strong>[set] follow (fork|forks) [mode] parent</strong>
<code>"set follow-fork-mode parent\n"</code></p></li>
<li><p><strong>show detach on fork</strong>
<code>"show detach-on-fork\n"</code></p></li>
<li><p><strong>set detach on fork</strong>
<code>"set detach-on-fork on\n"</code></p></li>
<li><p><strong>unset detach on fork</strong>
<code>"set detach-on-fork off\n"</code></p></li>
<li><p><strong>show list size</strong>
<code>"show listsize\n"</code></p></li>
<li><p><strong>set list size <number_small></strong>
<code>"set listsize {number_small}\n"</code></p></li>
<li><p><strong>clear screen</strong>
<code>"shell clear\n"</code></p></li>
</ul>
<h1 id="generic-browser">generic browser</h1>
<ul>
<li><p><strong>address bar | go address | go url</strong>
<code>browser.focus_address()</code></p></li>
<li><p><strong>address copy | url copy | copy address | copy
url</strong>
<code>browser.focus_address() sleep(50ms) edit.copy()</code></p></li>
<li><p><strong>go home</strong> <code>browser.go_home()</code></p></li>
<li><p><strong><a href="#go">go</a> forward</strong>
<code>browser.go_forward()</code></p></li>
<li><p><strong>go (back | backward)</strong>
<code>browser.go_back()</code></p></li>
<li><p><strong>go to {user.website}</strong>
<code>browser.go(website)</code></p></li>
<li><p><strong>go private</strong>
<code>browser.open_private_window()</code></p></li>
<li><p><strong>bookmark it</strong>
<code>browser.bookmark()</code></p></li>
<li><p><strong>bookmark tabs</strong>
<code>browser.bookmark_tabs()</code></p></li>
<li><p><strong>(refresh | reload) it</strong>
<code>browser.reload()</code></p></li>
<li><p><strong>(refresh | reload) it hard</strong>
<code>browser.reload_hard()</code></p></li>
<li><p><strong>bookmark show</strong>
<code>browser.bookmarks()</code></p></li>
<li><p><strong>bookmark bar [show]</strong>
<code>browser.bookmarks_bar()</code></p></li>
<li><p><strong>downloads show</strong>
<code>browser.show_downloads()</code></p></li>
<li><p><strong>extensions show</strong>
<code>browser.show_extensions()</code></p></li>
<li><p><strong>history show</strong>
<code>browser.show_history()</code></p></li>
<li><p><strong>cache show</strong>
<code>browser.show_clear_cache()</code></p></li>
<li><p><strong>dev tools [show]</strong>
<code>browser.toggle_dev_tools()</code></p></li>
<li><p><strong>show downloads</strong>
<code>browser.show_downloads()</code></p></li>
<li><p><strong>show extensions</strong>
<code>browser.show_extensions()</code></p></li>
<li><p><strong>show history</strong>
<code>browser.show_history()</code></p></li>
<li><p><strong>show cache</strong>
<code>browser.show_clear_cache()</code></p></li>
</ul>
<h1 id="generic-debugger">generic debugger</h1>
<ul>
<li><p><strong>step into</strong>
<code>user.debugger_step_into()</code></p></li>
<li><p><strong>step over</strong>
<code>user.debugger_step_over()</code></p></li>
<li><p><strong>step line</strong>
<code>user.debugger_step_line()</code></p></li>
<li><p><strong>step over line</strong>
<code>user.debugger_step_over_line()</code></p></li>
<li><p><strong>step out</strong>
<code>user.debugger_step_out()</code></p></li>
<li><p><strong>continue</strong>
<code>user.debugger_continue()</code></p></li>
<li><p><strong>debug start</strong>
<code>user.debugger_start()</code></p></li>
<li><p><strong>debug stop</strong>
<code>user.debugger_stop()</code></p></li>
<li><p><strong>debug exit</strong>
<code>user.debugger_exit()</code></p></li>
<li><p><strong>debug detach</strong>
<code>user.debugger_detach()</code></p></li>
<li><p><strong>debug restart</strong>
<code>user.debugger_restart()</code></p></li>
<li><p><strong>show registers</strong>
<code>user.debugger_show_registers()</code></p></li>
<li><p><strong>get register</strong>
<code>user.debugger_get_register()</code></p></li>
<li><p><strong>set register</strong>
<code>user.debugger_set_register()</code></p></li>
<li><p><strong>break now</strong>
<code>user.debugger_break_now()</code></p></li>
<li><p><strong>break here</strong>
<code>user.debugger_break_here()</code></p></li>
<li><p><strong>(list|show) (breaks|break points)</strong>
<code>user.debugger_show_breakpoints()</code></p></li>
<li><p><strong>(set|add) (break|break point)</strong>
<code>user.debugger_add_sw_breakpoint()</code></p></li>
<li><p><strong>(set|add) hardware (break|break point)</strong>
<code>user.debugger_add_hw_breakpoint()</code></p></li>
<li><p><strong>clear all (breaks|break points)</strong>
<code>user.debugger_clear_all_breakpoints()</code></p></li>
<li><p><strong>clear (break|break point)</strong>
<code>user.debugger_clear_breakpoint()</code></p></li>
<li><p><strong>clear (break|break point) <number_small></strong>
<code>user.debugger_clear_breakpoint_id(number_small)</code></p></li>
<li><p><strong>disable all (breaks|break points)</strong>
<code>user.debugger_disable_all_breakpoints()</code></p></li>
<li><p><strong>disable (break|break point)</strong>
<code>user.debugger_disable_breakpoint()</code></p></li>
<li><p><strong>disable (break|break point) <number_small></strong>
<code>user.debugger_disable_breakpoint_id(number_small)</code></p></li>
<li><p><strong>enable all (breaks|break points)</strong>
<code>user.debugger_enable_all_breakpoints()</code></p></li>
<li><p><strong>enable (break|break point)</strong>
<code>user.debugger_enable_breakpoint()</code></p></li>
<li><p><strong>enable (break|break point) <number_small></strong>
`user.debugger_enable_breakpoint_id(number_small)</p>
<pre><code> # Navigation
# Memory Inspection`</code></pre></li>
<li><p><strong>(stack|back) trace</strong>
<code>user.debugger_backtrace()</code></p></li>
<li><p><strong>disassemble</strong>
<code>user.debugger_disassemble()</code></p></li>
<li><p><strong>disassemble here</strong>
<code>user.debugger_disassemble_here()</code></p></li>
<li><p><strong>disassemble clipboard</strong>
<code>user.debugger_disassemble_clipboard()</code></p></li>
<li><p><strong>jump to address</strong>
<code>user.debugger_goto_address()</code></p></li>
<li><p><strong>jump to clipboard</strong>
<code>user.debugger_goto_clipboard()</code></p></li>
<li><p><strong>jump to highlighted</strong>
<code>user.debugger_goto_highlighted()</code></p></li>
<li><p><strong>dump string</strong>
<code>user.debugger_dump_ascii_string()</code></p></li>
<li><p><strong>dump unicode [string]</strong>
<code>user.debugger_dump_unicode_string()</code></p></li>
<li><p><strong>dump pointers</strong>
<code>user.debugger_dump_pointers()</code></p></li>
<li><p><strong>list modules</strong>
<code>user.debugger_list_modules()</code></p></li>
<li><p><strong>inspect type</strong>
<code>user.debugger_inspect_type()</code></p></li>
<li><p><strong>clear line</strong>
<code>user.debugger_clear_line()</code></p></li>
</ul>
<h1 id="generic-snippets">generic snippets</h1>
<ul>
<li><p><strong>snip {user.snippets}</strong>
<code>user.snippet_insert(user.snippets)</code></p></li>
<li><p><strong>snip hunt <user.text></strong>
<code>user.snippet_search(user.text)</code></p></li>
<li><p><strong>snip hunt</strong>
<code>user.snippet_search("")</code></p></li>
<li><p><strong>snip create</strong>
<code>user.snippet_create()</code></p></li>
<li><p><strong>snip show</strong>
<code>user.snippet_toggle()</code></p></li>
</ul>
<h1 id="generic-snippets-open">generic snippets open</h1>
<ul>
<li><strong>snip close</strong> <code>user.snippet_hide()</code></li>
</ul>
<h1 id="generic-terminal">generic terminal</h1>
<ul>
<li><p><strong>lisa</strong>
<code>user.terminal_list_directories()</code></p></li>
<li><p><strong>lisa all</strong>
<code>user.terminal_list_all_directories()</code></p></li>
<li><p><strong>katie [<user.text>]</strong>
<code>user.terminal_change_directory(text or "")</code></p></li>
<li><p><strong>katie root</strong>
<code>user.terminal_change_directory_root()</code></p></li>
<li><p><strong>go <user.system_path></strong>
<code>insert("cd \"{system_path}\"\n")</code></p></li>
<li><p><strong>clear screen</strong>
<code>user.terminal_clear_screen()</code></p></li>
<li><p><strong>run last</strong>
<code>user.terminal_run_last()</code></p></li>
<li><p><strong>rerun [<user.text>]</strong>
<code>user.terminal_rerun_search(text or "")</code></p></li>
<li><p><strong>rerun search</strong>
<code>user.terminal_rerun_search("")</code></p></li>
<li><p><strong>kill all</strong>
<code>user.terminal_kill_all()</code></p></li>
<li><p><strong>copy paste</strong>
<code>edit.copy() sleep(50ms) edit.paste()</code></p></li>
</ul>
<h1 id="hammerspoon">hammerspoon</h1>
<ul>
<li><strong>hyper <user.letter></strong>
<code>key('cmd-shift-alt-ctrl-{letter}')</code></li>
</ul>
<h1 id="i3wm">i3wm</h1>
<ul>
<li><p><strong>port <number_small></strong>
<code>user.system_command("i3-msg workspace number {number_small}")</code></p></li>
<li><p><strong>port ten</strong>
<code>user.system_command("i3-msg workspace number 10")</code></p></li>
<li><p><strong>(port flip|flipper)</strong>
<code>user.system_command("i3-msg workspace back_and_forth")</code></p></li>
<li><p><strong>port right</strong>
<code>user.system_command("i3-msg workspace next")</code></p></li>
<li><p><strong>port left</strong>
<code>user.system_command("i3-msg workspace prev")</code></p></li>
<li><p><strong>(win|window) left</strong>
<code>user.system_command("i3-msg focus left")</code></p></li>
<li><p><strong>(win|window) right</strong>
<code>user.system_command("i3-msg focus right")</code></p></li>
<li><p><strong>(win|window) up</strong>
<code>user.system_command("i3-msg focus up")</code></p></li>
<li><p><strong>(win|window) down</strong>
<code>user.system_command("i3-msg focus down")</code></p></li>
<li><p><strong>((win|window) kill|murder)</strong>
<code>user.system_command("i3-msg kill")</code></p></li>
<li><p><strong>(win|window) stacking</strong>
<code>user.system_command("i3-msg layout stacking")</code></p></li>
<li><p><strong>(win|window) default</strong>
<code>user.system_command("i3-msg layout toggle split")</code></p></li>
<li><p><strong>(win|window) tabbed</strong>
<code>user.system_command("i3-msg layout tabbed")</code></p></li>
<li><p><strong>reload i three config</strong>
<code>user.system_command("i3-msg reload")</code></p></li>
<li><p><strong>restart i three</strong>
<code>user.system_command("i3-msg restart")</code></p></li>
<li><p><strong>(full screen|scuba)</strong>
<code>user.system_command("i3-msg fullscreen")</code></p></li>
<li><p><strong>toggle floating</strong>
<code>user.system_command("i3-msg floating toggle")</code></p></li>
<li><p><strong>focus floating</strong>
<code>user.system_command("i3-msg focus mode_toggle")</code></p></li>
<li><p><strong>center window</strong>
<code>user.system_command("i3-msg move position center")</code></p></li>
<li><p><strong>resize mode</strong>
<code>user.system_command('i3-msg mode "resize"')</code></p></li>
<li><p><strong>focus parent</strong>
<code>user.system_command("i3-msg focus parent")</code></p></li>
<li><p><strong>focus child</strong>
<code>user.system_command("i3-msg focus child")</code></p></li>
<li><p><strong>grow window</strong> `user.system_command(‘i3-msg mode
“resize”’) key(right:10) key(down:10) # escape resize mode key(escape) #
center window sleep(200ms) user.system_command(“i3-msg move position
center”)</p>
<pre><code> # resize helpers`</code></pre></li>
<li><p><strong>shrink window</strong>
<code>user.system_command('i3-msg mode "resize"') key(left:10) key(up:10) # escape resize mode key(escape) # center window sleep(200ms) user.system_command("i3-msg move position center")</code></p></li>
<li><p><strong>horizontal (shell|terminal)</strong>
<code>user.system_command("i3-msg split h") user.i3wm_shell()</code></p></li>
<li><p><strong>vertical (shell|terminal)</strong>
`user.system_command(“i3-msg split v”) user.i3wm_shell()</p>
<pre><code> # XXX - just replace with shuffle eventually?
# XXX - like also need to match the generic talon commands`</code></pre></li>
<li><p><strong>(shuffle|move (win|window) [to] port)
<number_small></strong>
<code>user.system_command("i3-msg move container to workspace number {number_small}")</code></p></li>
<li><p><strong>(shuffle|move (win|window) [to] port ten)</strong>
<code>user.system_command("i3-msg move container to workspace number 10")</code></p></li>
<li><p><strong>(shuffle|move (win|window) [to] last port)</strong>
<code>user.system_command("i3-msg move container to workspace back_and_forth")</code></p></li>
<li><p><strong>(shuffle|move (win|window) left)</strong>
<code>user.system_command("i3-msg move left")</code></p></li>
<li><p><strong>(shuffle|move (win|window) right)</strong>
<code>user.system_command("i3-msg move right")</code></p></li>
<li><p><strong>(shuffle|move (win|window) up)</strong>
<code>user.system_command("i3-msg move up")</code></p></li>
<li><p><strong>(shuffle|move (win|window) down)</strong>
<code>user.system_command("i3-msg move down")</code></p></li>
<li><p><strong>(win|window) horizontal</strong>
<code>user.system_command("i3-msg split h")</code></p></li>
<li><p><strong>(win|window) vertical</strong>
<code>user.system_command("i3-msg split v")</code></p></li>
<li><p><strong>make scratch</strong>
<code>user.system_command("i3-msg move scratchpad")</code></p></li>
<li><p><strong>[(show|hide)] scratch</strong>
<code>user.system_command("i3-msg scratchpad show")</code></p></li>
<li><p><strong>next scratch</strong> `user.system_command(“i3-msg
scratchpad show”) user.system_command(“i3-msg scratchpad show”)</p>
<pre><code> # these rely on the user settings for the mod key. see i3wm.py Actions class`</code></pre></li>
<li><p><strong>launch</strong> <code>user.i3wm_launch()</code></p></li>
<li><p><strong>launch <user.text></strong>
<code>user.i3wm_launch() sleep(100ms) insert("{text}")</code></p></li>
<li><p><strong>lock screen</strong>
<code>user.i3wm_launch()</code></p></li>
<li><p><strong>(launch shell|koopa)</strong>
<code>user.i3wm_shell()</code></p></li>
<li><p><strong>new scratch (shell|window)</strong>
<code>user.i3wm_shell() sleep(200ms) user.system_command("i3-msg move scratchpad") user.system_command("i3-msg scratchpad show")</code></p></li>
</ul>
<h1 id="jetbrains">jetbrains</h1>
<ul>
<li><p><strong>complete</strong>
<code>user.idea("action CodeCompletion")</code></p></li>
<li><p><strong>perfect</strong>
<code>user.idea("action CodeCompletion,action CodeCompletion")</code></p></li>
<li><p><strong>smart</strong>
<code>user.idea("action SmartTypeCompletion")</code></p></li>
<li><p><strong>(done | finish)</strong>
<code>user.idea("action EditorCompleteStatement")</code></p></li>
<li><p><strong>grab <number></strong>
<code>user.idea_grab(number)</code></p></li>
<li><p><strong>(action | please)</strong>
<code>user.idea("action GotoAction")</code></p></li>
<li><p><strong>(action | please) <user.text></strong>
<code>user.idea("action GotoAction") insert(text) # Refactoring</code></p></li>
<li><p><strong>refactor</strong>
<code>user.idea("action Refactorings.QuickListPopupAction")</code></p></li>
<li><p><strong>refactor <user.text></strong>
<code>user.idea("action Refactorings.QuickListPopupAction") insert(text)</code></p></li>
<li><p><strong>extract variable</strong>
<code>user.idea("action IntroduceVariable")</code></p></li>
<li><p><strong>extract field</strong>
<code>user.idea("action IntroduceField")</code></p></li>
<li><p><strong>extract constant</strong>
<code>user.idea("action IntroduceConstant")</code></p></li>
<li><p><strong>extract parameter</strong>
<code>user.idea("action IntroduceParameter")</code></p></li>
<li><p><strong>extract interface</strong>
<code>user.idea("action ExtractInterface")</code></p></li>
<li><p><strong>extract method</strong>
<code>user.idea("action ExtractMethod")</code></p></li>
<li><p><strong>refactor in line</strong>
<code>user.idea("action Inline")</code></p></li>
<li><p><strong>refactor move</strong>
<code>user.idea("action Move")</code></p></li>
<li><p><strong>refactor rename</strong>
<code>user.idea("action RenameElement")</code></p></li>
<li><p><strong>rename file</strong>
<code>user.idea("action RenameFile")</code></p></li>
<li><p><strong>fix (format | formatting)</strong>
<code>user.idea("action ReformatCode")</code></p></li>
<li><p><strong>fix imports</strong>
<code>user.idea("action OptimizeImports")</code></p></li>
<li><p><strong>(go declaration | follow)</strong>
<code>user.idea("action GotoDeclaration")</code></p></li>
<li><p><strong>go implementation</strong>
<code>user.idea("action GotoImplementation")</code></p></li>
<li><p><strong>go usage</strong>
<code>user.idea("action FindUsages")</code></p></li>
<li><p><strong>go type</strong>
<code>user.idea("action GotoTypeDeclaration")</code></p></li>
<li><p><strong>go test</strong>
<code>user.idea("action GotoTest")</code></p></li>
<li><p><strong>go back</strong>
<code>user.idea("action Back")</code></p></li>
<li><p><strong>go forward</strong>
<code>user.idea("action Forward")</code></p></li>
<li><p><strong>find (everywhere | all)</strong>
<code>user.idea("action SearchEverywhere")</code></p></li>
<li><p><strong>find (everywhere | all) <user.text> [over]</strong>
<code>user.idea("action SearchEverywhere") sleep(500ms) insert(text)</code></p></li>
<li><p><strong>(search | find) class</strong>
<code>user.idea("action GotoClass")</code></p></li>
<li><p><strong>(search | find) file</strong>
<code>user.idea("action GotoFile")</code></p></li>
<li><p><strong>(search | find) path</strong>
<code>user.idea("action FindInPath")</code></p></li>
<li><p><strong>(search | find) symbol</strong>
<code>user.idea("action GotoSymbol")</code></p></li>
<li><p><strong>(search | find) symbol <user.text></strong>
<code>user.idea("action GotoSymbol") insert(text) key("enter")</code></p></li>
<li><p><strong>recent</strong>
<code>user.idea("action RecentFiles")</code></p></li>
<li><p><strong>surround [this] with <user.text> [over]</strong>
<code>idea("action SurroundWith") sleep(500ms) insert(text) # Making these longer to reduce collisions with real code dictation.</code></p></li>
<li><p><strong>insert generated <user.text> [over]</strong>
<code>user.idea("action Generate") sleep(500ms) insert(text)</code></p></li>
<li><p><strong>insert template <user.text> [over]</strong>
<code>idea("action InsertLiveTemplate") sleep(500ms) insert(text)</code></p></li>
<li><p><strong>create (template|snippet)</strong>
<code>user.idea("action SaveAsTemplate")</code></p></li>
<li><p><strong>toggle recording</strong>
<code>user.idea("action StartStopMacroRecording")</code></p></li>