-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippets.json
1618 lines (1618 loc) · 29.4 KB
/
snippets.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
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
{
"abs": {
"prefix": "abs",
"body": [
"abs(${1:<numeric expression>})$0"
],
"description": "ABS evaluates to the absolute value (value without the sign) of the given numeric term."
},
"asc": {
"prefix": "asc",
"body": [
"asc(${1:<string>})$0"
],
"description": "The ASC keyword takes the first char of a string and maps it to the numeric index of the Commodore ASCII-table."
},
"atn": {
"prefix": "atn",
"body": [
"atn(${1:<numeric expression>})$0"
],
"description": "The numerical function ATN is a mathematical function that returns the arc tangent of a numeric value (the inverse function of TAN)."
},
"chr": {
"prefix": "chr",
"body": [
"chr$(${1:<numeric expression>})$0"
],
"description": "CHR$ can be used to convert a number between 0 and 255 into an ASCII character (of string type) and is the inverse function of ASC."
},
"close": {
"prefix": "close",
"body": [
"close ${1:<logical file number>}$0"
],
"description": "The BASIC command CLOSE is used for closing currently opened files or drive numbers."
},
"cmd": {
"prefix": "cmd",
"body": [
"cmd ${1:<logical file number>},${2:<expression>}$0"
],
"description": "The BASIC command CMD changes the data output from the screen to another peripheral device like datasette, modem, printer or disk drive. "
},
"cos": {
"prefix": "cos",
"body": [
"cos(${1:<numeric expression>})$0"
],
"description": "The numeric function COS is a mathematical function which evaluates to the cosine for a given angle, a number considered to be in radians."
},
"data": {
"prefix": "data",
"body": [
"data ${1:<constant>},${2:<constant>},${3:<constant>},${4:<constant>},${5:<constant>},${6:<constant>},${7:<constant>},${8:<constant>}$0"
],
"description": "The BASIC-Command DATA is used to store constant information in the program code, and is used with the BASIC-command READ. "
},
"def": {
"prefix": "def",
"body": [
"def fn ${1:<function name>}(${2:<parameter name>})=${3:<mathematical expression>}",
"$0"
],
"description": "The BASIC-command DEF defines a function with exactly one single numeric argument which can be executed with FN afterwards."
},
"dim": {
"prefix": "dim",
"body": [
"dim ${1:<variable>}(${2:<d1>})$0"
],
"description": "The BASIC command DIM allocates space in array memory for a new array"
},
"exp": {
"prefix": "exp",
"body": [
"exp(${1:<number>})$0"
],
"description": "EXP is a mathematical function that evaluates the inverse natural LOG of the argument."
},
"fn": {
"prefix": "fn",
"body": [
"fn ${1:<function name>}(${2:<number>})$0"
],
"description": "The BASIC command FN executes a function which has been defined previously in the course of the program with the BASIC-command DEF."
},
"for": {
"prefix": "for",
"body": [
"for ${1:<counter variable>}=${2:<start value>} to ${3:<end value>}:${4:<expression>}:next ${1:<counter variable>}$0"
],
"description": "The BASIC command FOR is the start command of a FOR…TO…NEXT loop."
},
"fors": {
"prefix": "fors",
"body": [
"for ${1:<counter variable>}=${2:<start value>} to ${3:<end value>} step ${4:<stepsize>}:$(5:<expression>):next ${1:<counter variable>}$0"
],
"description": "The BASIC command FOR is the start command of a FOR…TO…STEP…NEXT loop."
},
"fre": {
"prefix": "fre",
"body": [
"fre(${1:<dummy argument>})$0"
],
"description": "FRE first performs a garbage collection to free up unused string memory."
},
"get": {
"prefix": "get",
"body": [
"get ${1:<variable>}$0"
],
"description": "The BASIC command GET reads one or more chars from the keyboard cache into a variable (string, floating point or integer) and can only be used in a BASIC program."
},
"get#": {
"prefix": "get#",
"body": [
"get#${1:<logic file number>},${2:<variable>}$0"
],
"description": "The BASIC command GET# reads single characters from the specified device or the opened file. "
},
"gosub": {
"prefix": "gosub",
"body": [
"gosub ${1:<line>}",
"$0"
],
"description": "The BASIC command GET# reads single characters from the specified device or the opened file. "
},
"goto": {
"prefix": "goto",
"body": [
"goto ${1:<line>}",
"$0"
],
"description": "The BASIC command GET# reads single characters from the specified device or the opened file. "
},
"if": {
"prefix": "if",
"body": [
"if ${1:<condition>} ${2|then,goto|} ${3:<line or espression>}$0"
],
"description": "The BASIC command IF is used to test a condition."
},
"input": {
"prefix": "input",
"body": [
"input ${1:<string>};${2:<variable>}$0"
],
"description": "The BASIC command INPUT is used to read data from the keyboard into one or more supplied variables."
},
"input#": {
"prefix": "input#",
"body": [
"input#${1:<logic file number>},${2:<variable>}$0"
],
"description": "The BASIC command INPUT# is used for reading data from a file stored on peripheral device media such as disk or tape."
},
"int": {
"prefix": "int",
"body": [
"int(${1:<number>})$0"
],
"description": "INT is used to round numbers, whereas rounding is different from its common mathematical definition."
},
"left$": {
"prefix": "left$",
"body": [
"left$(${1:<string>},${2:<integer number>})$0"
],
"description": "LEFT$ will be used for cutting strings into component parts beginning at the left side until to the indicated integer number."
},
"len": {
"prefix": "len",
"body": [
"len(${1:<string>})$0"
],
"description": "The function LEN returns the number of characters in a string. "
},
"let": {
"prefix": "let",
"body": [
"let ${1:<variable>}=${2:expression}$0"
],
"description": "The BASIC-Command LET will be used for assign numerical values or chars in the right type of variable."
},
"load": {
"prefix": "load",
"body": [
"load ${1:<filename>},${2:<device number>}${3:<secondary number>}$0"
],
"description": "The BASIC command LOAD is normally used for loading program files (PRG) like BASIC, machine language programs, but actually any kind of data from datasette or disk drive into RAM."
},
"log": {
"prefix": "log",
"body": [
"log(${1:<number>})$0"
],
"description": "The mathematical function LOG is a natural logarithm with the basis e(E)."
},
"mid$": {
"prefix": "mid$",
"body": [
"mid$(${1:<string>},${2:<integer number (start)>},${3:<integer number (end optional)>})$0"
],
"description": "MID$ will be used for cutting strings into component parts inside strings beginning by the startchar (1. integer number) until to the indicated length number (2. integer number) from the left side to the right side."
},
"not": {
"prefix": "not",
"body": [
"not(${1:<boolean/integer>})$0"
],
"description": "NOT reverse the boolean true into false."
},
"on": {
"prefix": "on",
"body": [
"on ${1:<index>} ${2|gosub,goto|} ${3:<line>}$0"
],
"description": "The command ON is part of a structure which jumps to a specific line."
},
"open": {
"prefix": "open",
"body": [
"open ${1:<logical filenumber>},${2:<device number>}${3:<secondary number>}$0"
],
"description": "The BASIC command OPEN is used for opening a logical file"
},
"peek": {
"prefix": "peek",
"body": [
"peek(${1:<memory address>})$0"
],
"description": "The BASIC function PEEK returns the memory contents of the specified address, which must be in the range 0 through 65535. "
},
"poke": {
"prefix": "poke",
"body": [
"poke ${1:<memory address>},${2:number}$0"
],
"description": "The BASIC command POKE changes the content of any address in the memory address, ranging from 0 to 65535, to the given byte value in the range 0 through 255."
},
"pos": {
"prefix": "pos",
"body": [
"pos(${1:<dummy argument>})$0"
],
"description": "The function POS determined the actual position of the cursor between 0 (first, leftmost column) and 79 (last, rightmost column in the second line) of the logical line on screen."
},
"print": {
"prefix": "print",
"body": [
"print ${1:<expression>}$0"
],
"description": "The BASIC command PRINT is used to print data to the current output device, normally the screen."
},
"print#": {
"prefix": "print#",
"body": [
"print#${1:<logical filenumber>},${2:<variable>}$0"
],
"description": "The BASIC command PRINT# is used for storing data in a file. Before PRINT# can be used, the destination file has to be opened with the BASIC command OPEN."
},
"read": {
"prefix": "read",
"body": [
"read ${1:<variable>}$0"
],
"description": "The BASIC command READ is used for reading constant values from DATA lines into the indicated variables."
},
"rem": {
"prefix": "rem",
"body": [
"rem ${1:<comment>}",
"$0"
],
"description": "The BASIC comment."
},
"remMultiline": {
"prefix": "rem",
"body": [
"rem",
"rem ${1:<comment>}",
"rem",
"$0"
],
"description": "The BASIC comment."
},
"right$": {
"prefix": "right$",
"body": [
"right$(${1:<string>},${2:<integer number>})$0"
],
"description": "RIGHT$ will be used for cutting strings into component parts beginning at the right side until to the left side."
},
"rnd": {
"prefix": "rnd",
"body": [
"rnd(${1:number})*${2:number}$0"
],
"description": "The function RND generates random floating point numbers in the range of 0.0 (inclusive) to 1.0 (exclusive). "
},
"save": {
"prefix": "save",
"body": [
"save ${1:<filename>},${2:<device number>}${3:<secondary number>}$0"
],
"description": "A written BASIC or computer code program, which exists in temporary RAM-memory, can be saved with the BASIC command SAVE permanently to a storage device such as a datasette, diskdrive or harddisk as a filetype program (PRG)."
},
"sgn": {
"prefix": "sgn",
"body": [
"sgn(${1:number})$0"
],
"description": "The function SGN gives autonomous of the algebraic sign the number (-1; 0; 1) of a numerical argument."
},
"sin": {
"prefix": "sin",
"body": [
"sin(${1:<numeric expression>})$0"
],
"description": "The numeric function SIN is a mathematical function which evaluates to the sine for a given angle, a number regarded as being in radians."
},
"spc": {
"prefix": "spc",
"body": [
"spc(${1:<integer>})$0"
],
"description": "SPC can be used to set a number of spaces."
},
"sqr": {
"prefix": "sqr",
"body": [
"sqr(${1:<number>})$0"
],
"description": "The numeric function SQR is a mathemathical function for square root of a number."
},
"str$": {
"prefix": "str$",
"body": [
"str$(${1:<number>})$0"
],
"description": "STR$ is used to converting numerical values or variables into a string."
},
"tab": {
"prefix": "tab",
"body": [
"tab(${1:<integer>})$0"
],
"description": "With the output function TAB the cursor position is set to logical screen column for use in BASIC output commands like PRINT."
},
"tan": {
"prefix": "tan",
"body": [
"tan(${1:<number>})$0"
],
"description": "The numerical function TAN is a mathematical function which evaluates to the tangent for a given angle, a number regarded as being in radians."
},
"usr": {
"prefix": "usr",
"body": [
"usr(${1:<number>})$0"
],
"description": "USR is a user-defined function in the built-in BASIC interpreter"
},
"val": {
"prefix": "val",
"body": [
"val(${1:<string>})$0"
],
"description": "The function VAL finds a numerical value in a string."
},
"verify": {
"prefix": "verify",
"body": [
"verify ${1:<filename>},${2:<device number>}$0"
],
"description": "The BASIC command VERIFY is used for verifying files."
},
"wait": {
"prefix": "wait",
"body": [
"wait ${1:<memory adress>},${2:<and mask>},${2:<flip mask (optional)>}$0"
],
"description": "WAIT is a keyword in the built-in BASIC interpreter, which waits for a given memory location to match specific bit constellations."
},
"{return}": {
"prefix": "{return}",
"body": [
"chr$(13)$0"
],
"description": "Control character: return."
},
"{space}": {
"prefix": "{space}",
"body": [
"chr$(32)$0"
],
"description": "Control character: Space."
},
"{pi}": {
"prefix": "{pi}",
"body": [
"chr$(126)$0"
],
"description": "Control character: PI."
},
"{CTRL-A}": {
"prefix": [
"{CTRL-A}"
],
"description": "-",
"body": [
"{CTRL-A}$0"
]
},
"chr$(1)": {
"prefix": [
"{CTRL-A}"
],
"description": "-",
"body": [
"chr$(1)$0"
]
},
"{CTRL-B}": {
"prefix": [
"{CTRL-B}"
],
"description": "-",
"body": [
"{CTRL-B}$0"
]
},
"chr$(2)": {
"prefix": [
"{CTRL-B}"
],
"description": "-",
"body": [
"chr$(2)$0"
]
},
"{stop}": {
"prefix": [
"{stop}"
],
"description": "-",
"body": [
"{stop}$0"
]
},
"chr$(3)": {
"prefix": [
"{stop}"
],
"description": "-",
"body": [
"chr$(3)$0"
]
},
"{CTRL-D}": {
"prefix": [
"{CTRL-D}"
],
"description": "-",
"body": [
"{CTRL-D}$0"
]
},
"chr$(4)": {
"prefix": [
"{CTRL-D}"
],
"description": "-",
"body": [
"chr$(4)$0"
]
},
"{wht}": {
"prefix": [
"{wht}",
"{WHT}",
"{white}",
"{WHITE}"
],
"description": "Changes the text color to white.",
"body": [
"{wht}$0"
]
},
"chr$(5)": {
"prefix": [
"{wht}",
"{WHT}",
"{white}",
"{WHITE}"
],
"description": "Changes the text color to white.",
"body": [
"chr$(5)$0"
]
},
"{CTRL-F}": {
"prefix": [
"{CTRL-F}"
],
"description": "-",
"body": [
"{CTRL-F}$0"
]
},
"chr$(6)": {
"prefix": [
"{CTRL-F}"
],
"description": "-",
"body": [
"chr$(6)$0"
]
},
"{CTRL-G}": {
"prefix": [
"{CTRL-G}"
],
"description": "-",
"body": [
"{CTRL-G}$0"
]
},
"chr$(7)": {
"prefix": [
"{CTRL-G}"
],
"description": "-",
"body": [
"chr$(7)$0"
]
},
"{dish}": {
"prefix": [
"{dish}",
"{up/lo lock on}"
],
"description": "Disables changing the character set using the SHIFT + Commodore key combination.",
"body": [
"{dish}$0"
]
},
"chr$(8)": {
"prefix": [
"{dish}",
"{up/lo lock on}"
],
"description": "Disables changing the character set using the SHIFT + Commodore key combination.",
"body": [
"chr$(8)$0"
]
},
"{ensh}": {
"prefix": [
"{ensh}",
"{up/lo lock off}"
],
"description": "Enables changing the character set using the SHIFT + Commodore key combination.",
"body": [
"{ensh}$0"
]
},
"chr$(9)": {
"prefix": [
"{ensh}",
"{up/lo lock off}"
],
"description": "Enables changing the character set using the SHIFT + Commodore key combination.",
"body": [
"chr$(9)$0"
]
},
"{CTRL-K}": {
"prefix": [
"{CTRL-K}"
],
"description": "-",
"body": [
"{CTRL-K}$0"
]
},
"chr$(11)": {
"prefix": [
"{CTRL-K}"
],
"description": "-",
"body": [
"chr$(11)$0"
]
},
"{CTRL-L}": {
"prefix": [
"{CTRL-L}"
],
"description": "-",
"body": [
"{CTRL-L}$0"
]
},
"chr$(12)": {
"prefix": [
"{CTRL-L}"
],
"description": "-",
"body": [
"chr$(12)$0"
]
},
"{swlc}": {
"prefix": [
"{swlc}",
"{lower case}"
],
"description": "Select the lowercase/uppercase character set.",
"body": [
"{swlc}$0"
]
},
"chr$(14)": {
"prefix": [
"{swlc}",
"{lower case}"
],
"description": "Select the lowercase/uppercase character set.",
"body": [
"chr$(14)$0"
]
},
"{CTRL-O}": {
"prefix": [
"{CTRL-O}"
],
"description": "-",
"body": [
"{CTRL-O}$0"
]
},
"chr$(15)": {
"prefix": [
"{CTRL-O}"
],
"description": "-",
"body": [
"chr$(15)$0"
]
},
"{CTRL-P}": {
"prefix": [
"{CTRL-P}"
],
"description": "-",
"body": [
"{CTRL-P}$0"
]
},
"chr$(16)": {
"prefix": [
"{CTRL-P}"
],
"description": "-",
"body": [
"chr$(16)$0"
]
},
"{down}": {
"prefix": [
"{down}",
"{DOWN}",
"{DOWN}"
],
"description": "Cursor down: Next character will be printed in subsequent column one text line further down the screen.",
"body": [
"{down}$0"
]
},
"chr$(17)": {
"prefix": [
"{down}",
"{DOWN}",
"{DOWN}"
],
"description": "Cursor down: Next character will be printed in subsequent column one text line further down the screen.",
"body": [
"chr$(17)$0"
]
},
"{rvon}": {
"prefix": [
"{rvon}",
"{RVS ON}",
"{REVERSE ON}",
"{reverse on}",
"{RVSON}"
],
"description": "Reverse on: Selects reverse video text.",
"body": [
"{rvon}$0"
]
},
"chr$(18)": {
"prefix": [
"{rvon}",
"{RVS ON}",
"{REVERSE ON}",
"{reverse on}",
"{RVSON}"
],
"description": "Reverse on: Selects reverse video text.",
"body": [
"chr$(18)$0"
]
},
"{home}": {
"prefix": [
"{home}",
"{HOME}",
"{HOME}"
],
"description": "Home: Next character will be printed in the upper left-hand corner of the screen.",
"body": [
"{home}$0"
]
},
"chr$(19)": {
"prefix": [
"{home}",
"{HOME}",
"{HOME}"
],
"description": "Home: Next character will be printed in the upper left-hand corner of the screen.",
"body": [
"chr$(19)$0"
]
},
"{del}": {
"prefix": [
"{del}",
"{delete}",
"{DEL}"
],
"description": "Delete, or \"backspace\"; erases the previous character and moves the cursor one character position to the left.",
"body": [
"{del}$0"
]
},
"chr$(20)": {
"prefix": [
"{del}",
"{delete}",
"{DEL}"
],
"description": "Delete, or \"backspace\"; erases the previous character and moves the cursor one character position to the left.",
"body": [
"chr$(20)$0"
]
},
"{CTRL-U}": {
"prefix": [
"{CTRL-U}"
],
"description": "-",
"body": [
"{CTRL-U}$0"
]
},
"chr$(21)": {
"prefix": [
"{CTRL-U}"
],
"description": "-",
"body": [
"chr$(21)$0"
]
},
"{CTRL-V}": {
"prefix": [
"{CTRL-V}"
],
"description": "-",
"body": [
"{CTRL-V}$0"
]
},
"chr$(22)": {
"prefix": [
"{CTRL-V}"
],
"description": "-",
"body": [
"chr$(22)$0"
]
},
"{CTRL-W}": {
"prefix": [
"{CTRL-W}"
],
"description": "-",
"body": [
"{CTRL-W}$0"
]
},
"chr$(23)": {
"prefix": [
"{CTRL-W}"
],
"description": "-",
"body": [
"chr$(23)$0"
]
},
"{CTRL-X}": {
"prefix": [
"{CTRL-X}"
],
"description": "-",
"body": [
"{CTRL-X}$0"
]
},
"chr$(24)": {
"prefix": [
"{CTRL-X}"
],
"description": "-",
"body": [
"chr$(24)$0"
]
},
"{CTRL-Y}": {
"prefix": [
"{CTRL-Y}"
],
"description": "-",
"body": [
"{CTRL-Y}$0"
]
},
"chr$(25)": {
"prefix": [
"{CTRL-Y}"
],
"description": "-",
"body": [
"chr$(25)$0"
]
},
"{CTRL-Z}": {
"prefix": [
"{CTRL-Z}"
],
"description": "-",
"body": [
"{CTRL-Z}$0"
]
},
"chr$(26)": {
"prefix": [
"{CTRL-Z}"
],
"description": "-",
"body": [
"chr$(26)$0"
]
},
"{esc}": {
"prefix": [
"{esc}"
],
"description": "-",
"body": [
"{esc}$0"
]
},
"chr$(27)": {
"prefix": [
"{esc}"
],
"description": "-",
"body": [
"chr$(27)$0"
]
},
"{red}": {
"prefix": [
"{red}",
"{RED}",
"{RED}"
],
"description": "Changes the text color to red.",
"body": [
"{red}$0"
]
},
"chr$(28)": {
"prefix": [
"{red}",
"{RED}",
"{RED}"
],
"description": "Changes the text color to red.",
"body": [
"chr$(28)$0"
]
},
"{rght}": {
"prefix": [
"{rght}",
"{RIGHT}",
"{right}",
"{RIGHT}"
],
"description": "Advances the cursor one character position without printing anything.",
"body": [
"{rght}$0"
]
},
"chr$(29)": {
"prefix": [
"{rght}",
"{RIGHT}",
"{right}",
"{RIGHT}"
],
"description": "Advances the cursor one character position without printing anything.",
"body": [
"chr$(29)$0"
]
},
"{grn}": {
"prefix": [
"{grn}",
"{GRN}",
"{green}",
"{GREEN}"
],
"description": "Changes the text color to green.",
"body": [
"{grn}$0"
]
},
"chr$(30)": {
"prefix": [
"{grn}",
"{GRN}",
"{green}",
"{GREEN}"
],
"description": "Changes the text color to green.",
"body": [
"chr$(30)$0"
]
},
"{blu}": {
"prefix": [
"{blu}",
"{BLU}",
"{blue}",
"{BLUE}"
],
"description": "Changes the text color to blue.",
"body": [
"{blu}$0"
]
},
"chr$(31)": {
"prefix": [
"{blu}",
"{BLU}",
"{blue}",
"{BLUE}"
],
"description": "Changes the text color to blue.",
"body": [
"chr$(31)$0"
]
},
"{orng}": {
"prefix": [
"{orng}",
"{orange}",
"{orange}",
"{ORANGE}",
"[<1>]"
],
"description": "Changes the text color to orange.",
"body": [
"{orng}$0"
]
},
"chr$(129)": {
"prefix": [
"{orng}",
"{orange}",