-
Notifications
You must be signed in to change notification settings - Fork 4
/
ReaSyntax - EEL.sublime-completions
2051 lines (2051 loc) · 213 KB
/
ReaSyntax - EEL.sublime-completions
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
{
"scope": "source.EEL",
"completions":
[
{"trigger": "abs", "contents": "abs(${1:value})"},
{"trigger": "acos", "contents": "acos(${1:value})"},
{"trigger": "AddMediaItemToTrack", "contents": "AddMediaItemToTrack(${1:tr})"},
{"trigger": "AddProjectMarker", "contents": "AddProjectMarker(${1:proj}, ${2:isrgn}, ${3:pos}, ${4:rgnend}, ${5:\"name\"}, ${6:wantidx})"},
{"trigger": "AddProjectMarker2", "contents": "AddProjectMarker2(${1:proj}, ${2:isrgn}, ${3:pos}, ${4:rgnend}, ${5:\"name\"}, ${6:wantidx}, ${7:color})"},
{"trigger": "AddRemoveReaScript", "contents": "AddRemoveReaScript(${1:add}, ${2:sectionID}, ${3:\"scriptfn\"}, ${4:commit})"},
{"trigger": "AddTakeToMediaItem", "contents": "AddTakeToMediaItem(${1:item})"},
{"trigger": "AddTempoTimeSigMarker", "contents": "AddTempoTimeSigMarker(${1:proj}, ${2:timepos}, ${3:bpm}, ${4:timesig_num}, ${5:timesig_denom}, ${6:lineartempochange})"},
{"trigger": "adjustZoom", "contents": "adjustZoom(${1:amt}, ${2:forceset}, ${3:doupd}, ${4:centermode})"},
{"trigger": "AnyTrackSolo", "contents": "AnyTrackSolo(${1:proj})"},
{"trigger": "APIExists", "contents": "APIExists(${1:\"function_name\"})"},
{"trigger": "APITest", "contents": "APITest()"},
{"trigger": "ApplyNudge", "contents": "ApplyNudge(${1:project}, ${2:nudgeflag}, ${3:nudgewhat}, ${4:nudgeunits}, ${5:value}, ${6:reverse}, ${7:copies})"},
{"trigger": "ArmCommand", "contents": "ArmCommand(${1:cmd}, ${2:\"sectionname\"})"},
{"trigger": "asin", "contents": "asin(${1:value})"},
{"trigger": "atan", "contents": "atan(${1:value})"},
{"trigger": "atan2", "contents": "atan2(${1:numerator}, ${2:denominator})"},
{"trigger": "atexit", "contents": "atexit(${1:\"code\"})"},
{"trigger": "Audio_Init", "contents": "Audio_Init()"},
{"trigger": "Audio_IsPreBuffer", "contents": "Audio_IsPreBuffer()"},
{"trigger": "Audio_IsRunning", "contents": "Audio_IsRunning()"},
{"trigger": "Audio_Quit", "contents": "Audio_Quit()"},
{"trigger": "AudioAccessorStateChanged", "contents": "AudioAccessorStateChanged(${1:accessor})"},
{"trigger": "AudioAccessorUpdate", "contents": "AudioAccessorUpdate(${1:accessor})"},
{"trigger": "AudioAccessorValidateState", "contents": "AudioAccessorValidateState(${1:accessor})"},
{"trigger": "Blink_GetBeatAtTime", "contents": "Blink_GetBeatAtTime(${1:time}, ${2:quantum})"},
{"trigger": "Blink_GetClockNow", "contents": "Blink_GetClockNow()"},
{"trigger": "Blink_GetEnabled", "contents": "Blink_GetEnabled()"},
{"trigger": "Blink_GetMaster", "contents": "Blink_GetMaster()"},
{"trigger": "Blink_GetNumPeers", "contents": "Blink_GetNumPeers()"},
{"trigger": "Blink_GetPhaseAtTime", "contents": "Blink_GetPhaseAtTime(${1:time}, ${2:quantum})"},
{"trigger": "Blink_GetPlaying", "contents": "Blink_GetPlaying()"},
{"trigger": "Blink_GetPuppet", "contents": "Blink_GetPuppet()"},
{"trigger": "Blink_GetQuantum", "contents": "Blink_GetQuantum()"},
{"trigger": "Blink_GetStartStopSyncEnabled", "contents": "Blink_GetStartStopSyncEnabled()"},
{"trigger": "Blink_GetTempo", "contents": "Blink_GetTempo()"},
{"trigger": "Blink_GetTimeAtBeat", "contents": "Blink_GetTimeAtBeat(${1:beat}, ${2:quantum})"},
{"trigger": "Blink_GetTimeForPlaying", "contents": "Blink_GetTimeForPlaying()"},
{"trigger": "Blink_GetVersion", "contents": "Blink_GetVersion()"},
{"trigger": "Blink_SetBeatAtStartPlayingTimeRequest", "contents": "Blink_SetBeatAtStartPlayingTimeRequest(${1:beat}, ${2:quantum})"},
{"trigger": "Blink_SetBeatAtTimeForce", "contents": "Blink_SetBeatAtTimeForce(${1:bpm}, ${2:time}, ${3:quantum})"},
{"trigger": "Blink_SetBeatAtTimeRequest", "contents": "Blink_SetBeatAtTimeRequest(${1:bpm}, ${2:time}, ${3:quantum})"},
{"trigger": "Blink_SetCaptureTransportCommands", "contents": "Blink_SetCaptureTransportCommands(${1:enable})"},
{"trigger": "Blink_SetEnabled", "contents": "Blink_SetEnabled(${1:enable})"},
{"trigger": "Blink_SetMaster", "contents": "Blink_SetMaster(${1:enable})"},
{"trigger": "Blink_SetPlaying", "contents": "Blink_SetPlaying(${1:playing}, ${2:time})"},
{"trigger": "Blink_SetPlayingAndBeatAtTimeRequest", "contents": "Blink_SetPlayingAndBeatAtTimeRequest(${1:playing}, ${2:time}, ${3:beat}, ${4:quantum})"},
{"trigger": "Blink_SetPuppet", "contents": "Blink_SetPuppet(${1:enable})"},
{"trigger": "Blink_SetQuantum", "contents": "Blink_SetQuantum(${1:quantum})"},
{"trigger": "Blink_SetStartStopSyncEnabled", "contents": "Blink_SetStartStopSyncEnabled(${1:enable})"},
{"trigger": "Blink_SetTempo", "contents": "Blink_SetTempo(${1:bpm})"},
{"trigger": "Blink_SetTempoAtTime", "contents": "Blink_SetTempoAtTime(${1:bpm}, ${2:time})"},
{"trigger": "Blink_StartStop", "contents": "Blink_StartStop()"},
{"trigger": "BR_EnvAlloc", "contents": "BR_EnvAlloc(${1:envelope}, ${2:takeEnvelopesUseProjectTime})"},
{"trigger": "BR_EnvCountPoints", "contents": "BR_EnvCountPoints(${1:envelope})"},
{"trigger": "BR_EnvDeletePoint", "contents": "BR_EnvDeletePoint(${1:envelope}, ${2:id})"},
{"trigger": "BR_EnvFind", "contents": "BR_EnvFind(${1:envelope}, ${2:position}, ${3:delta})"},
{"trigger": "BR_EnvFindNext", "contents": "BR_EnvFindNext(${1:envelope}, ${2:position})"},
{"trigger": "BR_EnvFindPrevious", "contents": "BR_EnvFindPrevious(${1:envelope}, ${2:position})"},
{"trigger": "BR_EnvFree", "contents": "BR_EnvFree(${1:envelope}, ${2:commit})"},
{"trigger": "BR_EnvGetParentTake", "contents": "BR_EnvGetParentTake(${1:envelope})"},
{"trigger": "BR_EnvGetParentTrack", "contents": "BR_EnvGetParentTrack(${1:envelope})"},
{"trigger": "BR_EnvGetPoint", "contents": "BR_EnvGetPoint(${1:envelope}, ${2:id}, ${3:position}, ${4:value}, ${5:shape}, ${6:selected}, ${7:bezier})"},
{"trigger": "BR_EnvGetProperties", "contents": "BR_EnvGetProperties(${1:envelope}, ${2:active}, ${3:visible}, ${4:armed}, ${5:inLane}, ${6:laneHeight}, ${7:defaultShape}, ${8:minValue}, ${9:maxValue}, ${10:centerValue}, ${11:type}, ${12:faderScaling}, ${13:automationItemsOptions})"},
{"trigger": "BR_EnvSetPoint", "contents": "BR_EnvSetPoint(${1:envelope}, ${2:id}, ${3:position}, ${4:value}, ${5:shape}, ${6:selected}, ${7:bezier})"},
{"trigger": "BR_EnvSetProperties", "contents": "BR_EnvSetProperties(${1:envelope}, ${2:active}, ${3:visible}, ${4:armed}, ${5:inLane}, ${6:laneHeight}, ${7:defaultShape}, ${8:faderScaling}, ${9:automationItemsOptionsIn})"},
{"trigger": "BR_EnvSortPoints", "contents": "BR_EnvSortPoints(${1:envelope})"},
{"trigger": "BR_EnvValueAtPos", "contents": "BR_EnvValueAtPos(${1:envelope}, ${2:position})"},
{"trigger": "BR_GetArrangeView", "contents": "BR_GetArrangeView(${1:proj}, ${2:startTime}, ${3:endTime})"},
{"trigger": "BR_GetClosestGridDivision", "contents": "BR_GetClosestGridDivision(${1:position})"},
{"trigger": "BR_GetCurrentTheme", "contents": "BR_GetCurrentTheme(${1:#themePath}, ${2:#themeName})"},
{"trigger": "BR_GetMediaItemByGUID", "contents": "BR_GetMediaItemByGUID(${1:proj}, ${2:\"guidStringIn\"})"},
{"trigger": "BR_GetMediaItemGUID", "contents": "BR_GetMediaItemGUID(${1:item}, ${2:#guidString})"},
{"trigger": "BR_GetMediaItemImageResource", "contents": "BR_GetMediaItemImageResource(${1:item}, ${2:#image}, ${3:imageFlags})"},
{"trigger": "BR_GetMediaItemTakeGUID", "contents": "BR_GetMediaItemTakeGUID(${1:take}, ${2:#guidString})"},
{"trigger": "BR_GetMediaSourceProperties", "contents": "BR_GetMediaSourceProperties(${1:take}, ${2:section}, ${3:start}, ${4:length}, ${5:fade}, ${6:reverse})"},
{"trigger": "BR_GetMediaTrackByGUID", "contents": "BR_GetMediaTrackByGUID(${1:proj}, ${2:\"guidStringIn\"})"},
{"trigger": "BR_GetMediaTrackFreezeCount", "contents": "BR_GetMediaTrackFreezeCount(${1:track})"},
{"trigger": "BR_GetMediaTrackGUID", "contents": "BR_GetMediaTrackGUID(${1:track}, ${2:#guidString})"},
{"trigger": "BR_GetMediaTrackLayouts", "contents": "BR_GetMediaTrackLayouts(${1:track}, ${2:#mcpLayoutName}, ${3:#tcpLayoutName})"},
{"trigger": "BR_GetMediaTrackSendInfo_Envelope", "contents": "BR_GetMediaTrackSendInfo_Envelope(${1:track}, ${2:category}, ${3:sendidx}, ${4:envelopeType})"},
{"trigger": "BR_GetMediaTrackSendInfo_Track", "contents": "BR_GetMediaTrackSendInfo_Track(${1:track}, ${2:category}, ${3:sendidx}, ${4:trackType})"},
{"trigger": "BR_GetMidiSourceLenPPQ", "contents": "BR_GetMidiSourceLenPPQ(${1:take})"},
{"trigger": "BR_GetMidiTakePoolGUID", "contents": "BR_GetMidiTakePoolGUID(${1:take}, ${2:#guidString})"},
{"trigger": "BR_GetMidiTakeTempoInfo", "contents": "BR_GetMidiTakeTempoInfo(${1:take}, ${2:ignoreProjTempo}, ${3:bpm}, ${4:num}, ${5:den})"},
{"trigger": "BR_GetMouseCursorContext", "contents": "BR_GetMouseCursorContext(${1:#window}, ${2:#segment}, ${3:#details})"},
{"trigger": "BR_GetMouseCursorContext_Envelope", "contents": "BR_GetMouseCursorContext_Envelope(${1:takeEnvelope})"},
{"trigger": "BR_GetMouseCursorContext_Item", "contents": "BR_GetMouseCursorContext_Item()"},
{"trigger": "BR_GetMouseCursorContext_MIDI", "contents": "BR_GetMouseCursorContext_MIDI(${1:inlineEditor}, ${2:noteRow}, ${3:ccLane}, ${4:ccLaneVal}, ${5:ccLaneId})"},
{"trigger": "BR_GetMouseCursorContext_Position", "contents": "BR_GetMouseCursorContext_Position()"},
{"trigger": "BR_GetMouseCursorContext_StretchMarker", "contents": "BR_GetMouseCursorContext_StretchMarker()"},
{"trigger": "BR_GetMouseCursorContext_Take", "contents": "BR_GetMouseCursorContext_Take()"},
{"trigger": "BR_GetMouseCursorContext_Track", "contents": "BR_GetMouseCursorContext_Track()"},
{"trigger": "BR_GetNextGridDivision", "contents": "BR_GetNextGridDivision(${1:position})"},
{"trigger": "BR_GetPrevGridDivision", "contents": "BR_GetPrevGridDivision(${1:position})"},
{"trigger": "BR_GetSetTrackSendInfo", "contents": "BR_GetSetTrackSendInfo(${1:track}, ${2:category}, ${3:sendidx}, ${4:\"parmname\"}, ${5:setNewValue}, ${6:newValue})"},
{"trigger": "BR_GetTakeFXCount", "contents": "BR_GetTakeFXCount(${1:take})"},
{"trigger": "BR_IsMidiOpenInInlineEditor", "contents": "BR_IsMidiOpenInInlineEditor(${1:take})"},
{"trigger": "BR_IsTakeMidi", "contents": "BR_IsTakeMidi(${1:take}, ${2:inProjectMidi})"},
{"trigger": "BR_ItemAtMouseCursor", "contents": "BR_ItemAtMouseCursor(${1:position})"},
{"trigger": "BR_MIDI_CCLaneRemove", "contents": "BR_MIDI_CCLaneRemove(${1:midiEditor}, ${2:laneId})"},
{"trigger": "BR_MIDI_CCLaneReplace", "contents": "BR_MIDI_CCLaneReplace(${1:midiEditor}, ${2:laneId}, ${3:newCC})"},
{"trigger": "BR_PositionAtMouseCursor", "contents": "BR_PositionAtMouseCursor(${1:checkRuler})"},
{"trigger": "BR_SetArrangeView", "contents": "BR_SetArrangeView(${1:proj}, ${2:startTime}, ${3:endTime})"},
{"trigger": "BR_SetItemEdges", "contents": "BR_SetItemEdges(${1:item}, ${2:startTime}, ${3:endTime})"},
{"trigger": "BR_SetMediaItemImageResource", "contents": "BR_SetMediaItemImageResource(${1:item}, ${2:\"imageIn\"}, ${3:imageFlags})"},
{"trigger": "BR_SetMediaSourceProperties", "contents": "BR_SetMediaSourceProperties(${1:take}, ${2:section}, ${3:start}, ${4:length}, ${5:fade}, ${6:reverse})"},
{"trigger": "BR_SetMediaTrackLayouts", "contents": "BR_SetMediaTrackLayouts(${1:track}, ${2:\"mcpLayoutNameIn\"}, ${3:\"tcpLayoutNameIn\"})"},
{"trigger": "BR_SetMidiTakeTempoInfo", "contents": "BR_SetMidiTakeTempoInfo(${1:take}, ${2:ignoreProjTempo}, ${3:bpm}, ${4:num}, ${5:den})"},
{"trigger": "BR_SetTakeSourceFromFile", "contents": "BR_SetTakeSourceFromFile(${1:take}, ${2:\"filenameIn\"}, ${3:inProjectData})"},
{"trigger": "BR_SetTakeSourceFromFile2", "contents": "BR_SetTakeSourceFromFile2(${1:take}, ${2:\"filenameIn\"}, ${3:inProjectData}, ${4:keepSourceProperties})"},
{"trigger": "BR_TakeAtMouseCursor", "contents": "BR_TakeAtMouseCursor(${1:position})"},
{"trigger": "BR_TrackAtMouseCursor", "contents": "BR_TrackAtMouseCursor(${1:context}, ${2:position})"},
{"trigger": "BR_TrackFX_GetFXModuleName", "contents": "BR_TrackFX_GetFXModuleName(${1:track}, ${2:fx}, ${3:#name})"},
{"trigger": "BR_Win32_CB_FindString", "contents": "BR_Win32_CB_FindString(${1:comboBoxHwnd}, ${2:startId}, ${3:\"string\"})"},
{"trigger": "BR_Win32_CB_FindStringExact", "contents": "BR_Win32_CB_FindStringExact(${1:comboBoxHwnd}, ${2:startId}, ${3:\"string\"})"},
{"trigger": "BR_Win32_ClientToScreen", "contents": "BR_Win32_ClientToScreen(${1:hwnd}, ${2:xIn}, ${3:yIn}, ${4:x}, ${5:y})"},
{"trigger": "BR_Win32_FindWindowEx", "contents": "BR_Win32_FindWindowEx(${1:\"hwndParent\"}, ${2:\"hwndChildAfter\"}, ${3:\"className\"}, ${4:\"windowName\"}, ${5:searchClass}, ${6:searchName})"},
{"trigger": "BR_Win32_GET_X_LPARAM", "contents": "BR_Win32_GET_X_LPARAM(${1:lParam})"},
{"trigger": "BR_Win32_GET_Y_LPARAM", "contents": "BR_Win32_GET_Y_LPARAM(${1:lParam})"},
{"trigger": "BR_Win32_GetConstant", "contents": "BR_Win32_GetConstant(${1:\"constantName\"})"},
{"trigger": "BR_Win32_GetCursorPos", "contents": "BR_Win32_GetCursorPos(${1:x}, ${2:y})"},
{"trigger": "BR_Win32_GetFocus", "contents": "BR_Win32_GetFocus()"},
{"trigger": "BR_Win32_GetForegroundWindow", "contents": "BR_Win32_GetForegroundWindow()"},
{"trigger": "BR_Win32_GetMainHwnd", "contents": "BR_Win32_GetMainHwnd()"},
{"trigger": "BR_Win32_GetMixerHwnd", "contents": "BR_Win32_GetMixerHwnd(${1:isDocked})"},
{"trigger": "BR_Win32_GetMonitorRectFromRect", "contents": "BR_Win32_GetMonitorRectFromRect(${1:workingAreaOnly}, ${2:leftIn}, ${3:topIn}, ${4:rightIn}, ${5:bottomIn}, ${6:left}, ${7:top}, ${8:right}, ${9:bottom})"},
{"trigger": "BR_Win32_GetParent", "contents": "BR_Win32_GetParent(${1:hwnd})"},
{"trigger": "BR_Win32_GetPrivateProfileString", "contents": "BR_Win32_GetPrivateProfileString(${1:\"sectionName\"}, ${2:\"keyName\"}, ${3:\"defaultString\"}, ${4:\"filePath\"}, ${5:#string})"},
{"trigger": "BR_Win32_GetWindow", "contents": "BR_Win32_GetWindow(${1:hwnd}, ${2:cmd})"},
{"trigger": "BR_Win32_GetWindowLong", "contents": "BR_Win32_GetWindowLong(${1:hwnd}, ${2:index})"},
{"trigger": "BR_Win32_GetWindowRect", "contents": "BR_Win32_GetWindowRect(${1:hwnd}, ${2:left}, ${3:top}, ${4:right}, ${5:bottom})"},
{"trigger": "BR_Win32_GetWindowText", "contents": "BR_Win32_GetWindowText(${1:hwnd}, ${2:#text})"},
{"trigger": "BR_Win32_HIBYTE", "contents": "BR_Win32_HIBYTE(${1:value})"},
{"trigger": "BR_Win32_HIWORD", "contents": "BR_Win32_HIWORD(${1:value})"},
{"trigger": "BR_Win32_HwndToString", "contents": "BR_Win32_HwndToString(${1:hwnd}, ${2:#string})"},
{"trigger": "BR_Win32_IsWindow", "contents": "BR_Win32_IsWindow(${1:hwnd})"},
{"trigger": "BR_Win32_IsWindowVisible", "contents": "BR_Win32_IsWindowVisible(${1:hwnd})"},
{"trigger": "BR_Win32_LOBYTE", "contents": "BR_Win32_LOBYTE(${1:value})"},
{"trigger": "BR_Win32_LOWORD", "contents": "BR_Win32_LOWORD(${1:value})"},
{"trigger": "BR_Win32_MAKELONG", "contents": "BR_Win32_MAKELONG(${1:low}, ${2:high})"},
{"trigger": "BR_Win32_MAKELPARAM", "contents": "BR_Win32_MAKELPARAM(${1:low}, ${2:high})"},
{"trigger": "BR_Win32_MAKELRESULT", "contents": "BR_Win32_MAKELRESULT(${1:low}, ${2:high})"},
{"trigger": "BR_Win32_MAKEWORD", "contents": "BR_Win32_MAKEWORD(${1:low}, ${2:high})"},
{"trigger": "BR_Win32_MAKEWPARAM", "contents": "BR_Win32_MAKEWPARAM(${1:low}, ${2:high})"},
{"trigger": "BR_Win32_MIDIEditor_GetActive", "contents": "BR_Win32_MIDIEditor_GetActive()"},
{"trigger": "BR_Win32_ScreenToClient", "contents": "BR_Win32_ScreenToClient(${1:hwnd}, ${2:xIn}, ${3:yIn}, ${4:x}, ${5:y})"},
{"trigger": "BR_Win32_SendMessage", "contents": "BR_Win32_SendMessage(${1:hwnd}, ${2:msg}, ${3:lParam}, ${4:wParam})"},
{"trigger": "BR_Win32_SetFocus", "contents": "BR_Win32_SetFocus(${1:hwnd})"},
{"trigger": "BR_Win32_SetForegroundWindow", "contents": "BR_Win32_SetForegroundWindow(${1:hwnd})"},
{"trigger": "BR_Win32_SetWindowLong", "contents": "BR_Win32_SetWindowLong(${1:hwnd}, ${2:index}, ${3:newLong})"},
{"trigger": "BR_Win32_SetWindowPos", "contents": "BR_Win32_SetWindowPos(${1:hwnd}, ${2:\"hwndInsertAfter\"}, ${3:x}, ${4:y}, ${5:width}, ${6:height}, ${7:flags})"},
{"trigger": "BR_Win32_ShellExecute", "contents": "BR_Win32_ShellExecute(${1:\"operation\"}, ${2:\"file\"}, ${3:\"parameters\"}, ${4:\"directory\"}, ${5:showFlags})"},
{"trigger": "BR_Win32_ShowWindow", "contents": "BR_Win32_ShowWindow(${1:hwnd}, ${2:cmdShow})"},
{"trigger": "BR_Win32_StringToHwnd", "contents": "BR_Win32_StringToHwnd(${1:\"string\"})"},
{"trigger": "BR_Win32_WindowFromPoint", "contents": "BR_Win32_WindowFromPoint(${1:x}, ${2:y})"},
{"trigger": "BR_Win32_WritePrivateProfileString", "contents": "BR_Win32_WritePrivateProfileString(${1:\"sectionName\"}, ${2:\"keyName\"}, ${3:\"value\"}, ${4:\"filePath\"})"},
{"trigger": "BypassFxAllTracks", "contents": "BypassFxAllTracks(${1:bypass})"},
{"trigger": "CalculateNormalization", "contents": "CalculateNormalization(${1:source}, ${2:normalizeTo}, ${3:normalizeTarget}, ${4:normalizeStart}, ${5:normalizeEnd})"},
{"trigger": "ceil", "contents": "ceil(${1:value})"},
{"trigger": "CF_EnumerateActions", "contents": "CF_EnumerateActions(${1:section}, ${2:index}, ${3:#name})"},
{"trigger": "CF_EnumMediaSourceCues", "contents": "CF_EnumMediaSourceCues(${1:src}, ${2:index}, ${3:time}, ${4:endTime}, ${5:isRegion}, ${6:#name}, ${7:isChapter})"},
{"trigger": "CF_EnumSelectedFX", "contents": "CF_EnumSelectedFX(${1:hwnd}, ${2:index})"},
{"trigger": "CF_ExportMediaSource", "contents": "CF_ExportMediaSource(${1:src}, ${2:\"fn\"})"},
{"trigger": "CF_GetClipboard", "contents": "CF_GetClipboard(${1:#text})"},
{"trigger": "CF_GetClipboardBig", "contents": "CF_GetClipboardBig(${1:#retval}, ${2:output})"},
{"trigger": "CF_GetCommandText", "contents": "CF_GetCommandText(${1:#retval}, ${2:section}, ${3:command})"},
{"trigger": "CF_GetFocusedFXChain", "contents": "CF_GetFocusedFXChain()"},
{"trigger": "CF_GetMediaSourceBitDepth", "contents": "CF_GetMediaSourceBitDepth(${1:src})"},
{"trigger": "CF_GetMediaSourceBitRate", "contents": "CF_GetMediaSourceBitRate(${1:src})"},
{"trigger": "CF_GetMediaSourceMetadata", "contents": "CF_GetMediaSourceMetadata(${1:src}, ${2:\"name\"}, ${3:#out})"},
{"trigger": "CF_GetMediaSourceOnline", "contents": "CF_GetMediaSourceOnline(${1:src})"},
{"trigger": "CF_GetMediaSourceRPP", "contents": "CF_GetMediaSourceRPP(${1:src}, ${2:#fn})"},
{"trigger": "CF_GetSWSVersion", "contents": "CF_GetSWSVersion(${1:#version})"},
{"trigger": "CF_GetTakeFXChain", "contents": "CF_GetTakeFXChain(${1:take})"},
{"trigger": "CF_GetTrackFXChain", "contents": "CF_GetTrackFXChain(${1:track})"},
{"trigger": "CF_GetTrackFXChainEx", "contents": "CF_GetTrackFXChainEx(${1:project}, ${2:track}, ${3:wantInputChain})"},
{"trigger": "CF_LocateInExplorer", "contents": "CF_LocateInExplorer(${1:\"file\"})"},
{"trigger": "CF_SelectTrackFX", "contents": "CF_SelectTrackFX(${1:track}, ${2:index})"},
{"trigger": "CF_SetClipboard", "contents": "CF_SetClipboard(${1:\"str\"})"},
{"trigger": "CF_SetMediaSourceOnline", "contents": "CF_SetMediaSourceOnline(${1:src}, ${2:set})"},
{"trigger": "CF_ShellExecute", "contents": "CF_ShellExecute(${1:\"file\"})"},
{"trigger": "ClearAllRecArmed", "contents": "ClearAllRecArmed()"},
{"trigger": "ClearConsole", "contents": "ClearConsole()"},
{"trigger": "ClearPeakCache", "contents": "ClearPeakCache()"},
{"trigger": "ColorFromNative", "contents": "ColorFromNative(${1:col}, ${2:r}, ${3:g}, ${4:b})"},
{"trigger": "ColorToNative", "contents": "ColorToNative(${1:r}, ${2:g}, ${3:b})"},
{"trigger": "convolve_c", "contents": "convolve_c(${1:dest}, ${2:src}, ${3:size})"},
{"trigger": "cos", "contents": "cos(${1:angle})"},
{"trigger": "CountAutomationItems", "contents": "CountAutomationItems(${1:env})"},
{"trigger": "CountEnvelopePoints", "contents": "CountEnvelopePoints(${1:envelope})"},
{"trigger": "CountEnvelopePointsEx", "contents": "CountEnvelopePointsEx(${1:envelope}, ${2:autoitem_idx})"},
{"trigger": "CountMediaItems", "contents": "CountMediaItems(${1:proj})"},
{"trigger": "CountProjectMarkers", "contents": "CountProjectMarkers(${1:proj}, ${2:num_markers}, ${3:num_regions})"},
{"trigger": "CountSelectedMediaItems", "contents": "CountSelectedMediaItems(${1:proj})"},
{"trigger": "CountSelectedTracks", "contents": "CountSelectedTracks(${1:proj})"},
{"trigger": "CountSelectedTracks2", "contents": "CountSelectedTracks2(${1:proj}, ${2:wantmaster})"},
{"trigger": "CountTakeEnvelopes", "contents": "CountTakeEnvelopes(${1:take})"},
{"trigger": "CountTakes", "contents": "CountTakes(${1:item})"},
{"trigger": "CountTCPFXParms", "contents": "CountTCPFXParms(${1:project}, ${2:track})"},
{"trigger": "CountTempoTimeSigMarkers", "contents": "CountTempoTimeSigMarkers(${1:proj})"},
{"trigger": "CountTrackEnvelopes", "contents": "CountTrackEnvelopes(${1:track})"},
{"trigger": "CountTrackMediaItems", "contents": "CountTrackMediaItems(${1:track})"},
{"trigger": "CountTracks", "contents": "CountTracks(${1:proj})"},
{"trigger": "CreateNewMIDIItemInProj", "contents": "CreateNewMIDIItemInProj(${1:track}, ${2:starttime}, ${3:endtime}, ${4:qnIn})"},
{"trigger": "CreateTakeAudioAccessor", "contents": "CreateTakeAudioAccessor(${1:take})"},
{"trigger": "CreateTrackAudioAccessor", "contents": "CreateTrackAudioAccessor(${1:track})"},
{"trigger": "CreateTrackSend", "contents": "CreateTrackSend(${1:tr}, ${2:desttrIn})"},
{"trigger": "CSurf_FlushUndo", "contents": "CSurf_FlushUndo(${1:force})"},
{"trigger": "CSurf_GetTouchState", "contents": "CSurf_GetTouchState(${1:trackid}, ${2:isPan})"},
{"trigger": "CSurf_GoEnd", "contents": "CSurf_GoEnd()"},
{"trigger": "CSurf_GoStart", "contents": "CSurf_GoStart()"},
{"trigger": "CSurf_NumTracks", "contents": "CSurf_NumTracks(${1:mcpView})"},
{"trigger": "CSurf_OnArrow", "contents": "CSurf_OnArrow(${1:whichdir}, ${2:wantzoom})"},
{"trigger": "CSurf_OnFwd", "contents": "CSurf_OnFwd(${1:seekplay})"},
{"trigger": "CSurf_OnFXChange", "contents": "CSurf_OnFXChange(${1:trackid}, ${2:en})"},
{"trigger": "CSurf_OnInputMonitorChange", "contents": "CSurf_OnInputMonitorChange(${1:trackid}, ${2:monitor})"},
{"trigger": "CSurf_OnInputMonitorChangeEx", "contents": "CSurf_OnInputMonitorChangeEx(${1:trackid}, ${2:monitor}, ${3:allowgang})"},
{"trigger": "CSurf_OnMuteChange", "contents": "CSurf_OnMuteChange(${1:trackid}, ${2:mute})"},
{"trigger": "CSurf_OnMuteChangeEx", "contents": "CSurf_OnMuteChangeEx(${1:trackid}, ${2:mute}, ${3:allowgang})"},
{"trigger": "CSurf_OnPanChange", "contents": "CSurf_OnPanChange(${1:trackid}, ${2:pan}, ${3:relative})"},
{"trigger": "CSurf_OnPanChangeEx", "contents": "CSurf_OnPanChangeEx(${1:trackid}, ${2:pan}, ${3:relative}, ${4:allowGang})"},
{"trigger": "CSurf_OnPause", "contents": "CSurf_OnPause()"},
{"trigger": "CSurf_OnPlay", "contents": "CSurf_OnPlay()"},
{"trigger": "CSurf_OnPlayRateChange", "contents": "CSurf_OnPlayRateChange(${1:playrate})"},
{"trigger": "CSurf_OnRecArmChange", "contents": "CSurf_OnRecArmChange(${1:trackid}, ${2:recarm})"},
{"trigger": "CSurf_OnRecArmChangeEx", "contents": "CSurf_OnRecArmChangeEx(${1:trackid}, ${2:recarm}, ${3:allowgang})"},
{"trigger": "CSurf_OnRecord", "contents": "CSurf_OnRecord()"},
{"trigger": "CSurf_OnRecvPanChange", "contents": "CSurf_OnRecvPanChange(${1:trackid}, ${2:recv_index}, ${3:pan}, ${4:relative})"},
{"trigger": "CSurf_OnRecvVolumeChange", "contents": "CSurf_OnRecvVolumeChange(${1:trackid}, ${2:recv_index}, ${3:volume}, ${4:relative})"},
{"trigger": "CSurf_OnRew", "contents": "CSurf_OnRew(${1:seekplay})"},
{"trigger": "CSurf_OnRewFwd", "contents": "CSurf_OnRewFwd(${1:seekplay}, ${2:dir})"},
{"trigger": "CSurf_OnScroll", "contents": "CSurf_OnScroll(${1:xdir}, ${2:ydir})"},
{"trigger": "CSurf_OnSelectedChange", "contents": "CSurf_OnSelectedChange(${1:trackid}, ${2:selected})"},
{"trigger": "CSurf_OnSendPanChange", "contents": "CSurf_OnSendPanChange(${1:trackid}, ${2:send_index}, ${3:pan}, ${4:relative})"},
{"trigger": "CSurf_OnSendVolumeChange", "contents": "CSurf_OnSendVolumeChange(${1:trackid}, ${2:send_index}, ${3:volume}, ${4:relative})"},
{"trigger": "CSurf_OnSoloChange", "contents": "CSurf_OnSoloChange(${1:trackid}, ${2:solo})"},
{"trigger": "CSurf_OnSoloChangeEx", "contents": "CSurf_OnSoloChangeEx(${1:trackid}, ${2:solo}, ${3:allowgang})"},
{"trigger": "CSurf_OnStop", "contents": "CSurf_OnStop()"},
{"trigger": "CSurf_OnTempoChange", "contents": "CSurf_OnTempoChange(${1:bpm})"},
{"trigger": "CSurf_OnTrackSelection", "contents": "CSurf_OnTrackSelection(${1:trackid})"},
{"trigger": "CSurf_OnVolumeChange", "contents": "CSurf_OnVolumeChange(${1:trackid}, ${2:volume}, ${3:relative})"},
{"trigger": "CSurf_OnVolumeChangeEx", "contents": "CSurf_OnVolumeChangeEx(${1:trackid}, ${2:volume}, ${3:relative}, ${4:allowGang})"},
{"trigger": "CSurf_OnWidthChange", "contents": "CSurf_OnWidthChange(${1:trackid}, ${2:width}, ${3:relative})"},
{"trigger": "CSurf_OnWidthChangeEx", "contents": "CSurf_OnWidthChangeEx(${1:trackid}, ${2:width}, ${3:relative}, ${4:allowGang})"},
{"trigger": "CSurf_OnZoom", "contents": "CSurf_OnZoom(${1:xdir}, ${2:ydir})"},
{"trigger": "CSurf_ResetAllCachedVolPanStates", "contents": "CSurf_ResetAllCachedVolPanStates()"},
{"trigger": "CSurf_ScrubAmt", "contents": "CSurf_ScrubAmt(${1:amt})"},
{"trigger": "CSurf_SetAutoMode", "contents": "CSurf_SetAutoMode(${1:mode}, ${2:ignoresurf})"},
{"trigger": "CSurf_SetPlayState", "contents": "CSurf_SetPlayState(${1:play}, ${2:pause}, ${3:rec}, ${4:ignoresurf})"},
{"trigger": "CSurf_SetRepeatState", "contents": "CSurf_SetRepeatState(${1:rep}, ${2:ignoresurf})"},
{"trigger": "CSurf_SetSurfaceMute", "contents": "CSurf_SetSurfaceMute(${1:trackid}, ${2:mute}, ${3:ignoresurf})"},
{"trigger": "CSurf_SetSurfacePan", "contents": "CSurf_SetSurfacePan(${1:trackid}, ${2:pan}, ${3:ignoresurf})"},
{"trigger": "CSurf_SetSurfaceRecArm", "contents": "CSurf_SetSurfaceRecArm(${1:trackid}, ${2:recarm}, ${3:ignoresurf})"},
{"trigger": "CSurf_SetSurfaceSelected", "contents": "CSurf_SetSurfaceSelected(${1:trackid}, ${2:selected}, ${3:ignoresurf})"},
{"trigger": "CSurf_SetSurfaceSolo", "contents": "CSurf_SetSurfaceSolo(${1:trackid}, ${2:solo}, ${3:ignoresurf})"},
{"trigger": "CSurf_SetSurfaceVolume", "contents": "CSurf_SetSurfaceVolume(${1:trackid}, ${2:volume}, ${3:ignoresurf})"},
{"trigger": "CSurf_SetTrackListChange", "contents": "CSurf_SetTrackListChange()"},
{"trigger": "CSurf_TrackFromID", "contents": "CSurf_TrackFromID(${1:idx}, ${2:mcpView})"},
{"trigger": "CSurf_TrackToID", "contents": "CSurf_TrackToID(${1:track}, ${2:mcpView})"},
{"trigger": "DB2SLIDER", "contents": "DB2SLIDER(${1:x})"},
{"trigger": "defer", "contents": "defer(${1:\"code\"})"},
{"trigger": "DeleteEnvelopePointEx", "contents": "DeleteEnvelopePointEx(${1:envelope}, ${2:autoitem_idx}, ${3:ptidx})"},
{"trigger": "DeleteEnvelopePointRange", "contents": "DeleteEnvelopePointRange(${1:envelope}, ${2:time_start}, ${3:time_end})"},
{"trigger": "DeleteEnvelopePointRangeEx", "contents": "DeleteEnvelopePointRangeEx(${1:envelope}, ${2:autoitem_idx}, ${3:time_start}, ${4:time_end})"},
{"trigger": "DeleteExtState", "contents": "DeleteExtState(${1:\"section\"}, ${2:\"key\"}, ${3:persist})"},
{"trigger": "DeleteProjectMarker", "contents": "DeleteProjectMarker(${1:proj}, ${2:markrgnindexnumber}, ${3:isrgn})"},
{"trigger": "DeleteProjectMarkerByIndex", "contents": "DeleteProjectMarkerByIndex(${1:proj}, ${2:markrgnidx})"},
{"trigger": "DeleteTakeMarker", "contents": "DeleteTakeMarker(${1:take}, ${2:idx})"},
{"trigger": "DeleteTakeStretchMarkers", "contents": "DeleteTakeStretchMarkers(${1:take}, ${2:idx}, ${3:countIn})"},
{"trigger": "DeleteTempoTimeSigMarker", "contents": "DeleteTempoTimeSigMarker(${1:project}, ${2:markerindex})"},
{"trigger": "DeleteTrack", "contents": "DeleteTrack(${1:tr})"},
{"trigger": "DeleteTrackMediaItem", "contents": "DeleteTrackMediaItem(${1:tr}, ${2:it})"},
{"trigger": "DestroyAudioAccessor", "contents": "DestroyAudioAccessor(${1:accessor})"},
{"trigger": "Dock_UpdateDockID", "contents": "Dock_UpdateDockID(${1:\"ident_str\"}, ${2:whichDock})"},
{"trigger": "DockGetPosition", "contents": "DockGetPosition(${1:whichDock})"},
{"trigger": "DockIsChildOfDock", "contents": "DockIsChildOfDock(${1:hwnd}, ${2:isFloatingDocker})"},
{"trigger": "DockWindowActivate", "contents": "DockWindowActivate(${1:hwnd})"},
{"trigger": "DockWindowAdd", "contents": "DockWindowAdd(${1:hwnd}, ${2:\"name\"}, ${3:pos}, ${4:allowShow})"},
{"trigger": "DockWindowAddEx", "contents": "DockWindowAddEx(${1:hwnd}, ${2:\"name\"}, ${3:\"identstr\"}, ${4:allowShow})"},
{"trigger": "DockWindowRefresh", "contents": "DockWindowRefresh()"},
{"trigger": "DockWindowRefreshForHWND", "contents": "DockWindowRefreshForHWND(${1:hwnd})"},
{"trigger": "DockWindowRemove", "contents": "DockWindowRemove(${1:hwnd})"},
{"trigger": "EditTempoTimeSigMarker", "contents": "EditTempoTimeSigMarker(${1:project}, ${2:markerindex})"},
{"trigger": "EnsureNotCompletelyOffscreen", "contents": "EnsureNotCompletelyOffscreen(${1:r.left}, ${2:r.top}, ${3:r.right}, ${4:r.bot})"},
{"trigger": "EnumerateFiles", "contents": "EnumerateFiles(${1:#retval}, ${2:\"path\"}, ${3:fileindex})"},
{"trigger": "EnumerateSubdirectories", "contents": "EnumerateSubdirectories(${1:#retval}, ${2:\"path\"}, ${3:subdirindex})"},
{"trigger": "EnumPitchShiftModes", "contents": "EnumPitchShiftModes(${1:mode}, ${2:#str})"},
{"trigger": "EnumPitchShiftSubModes", "contents": "EnumPitchShiftSubModes(${1:#retval}, ${2:mode}, ${3:submode})"},
{"trigger": "EnumProjectMarkers", "contents": "EnumProjectMarkers(${1:idx}, ${2:isrgn}, ${3:pos}, ${4:rgnend}, ${5:#name}, ${6:markrgnindexnumber})"},
{"trigger": "EnumProjectMarkers2", "contents": "EnumProjectMarkers2(${1:proj}, ${2:idx}, ${3:isrgn}, ${4:pos}, ${5:rgnend}, ${6:#name}, ${7:markrgnindexnumber})"},
{"trigger": "EnumProjectMarkers3", "contents": "EnumProjectMarkers3(${1:proj}, ${2:idx}, ${3:isrgn}, ${4:pos}, ${5:rgnend}, ${6:#name}, ${7:markrgnindexnumber}, ${8:color})"},
{"trigger": "EnumProjects", "contents": "EnumProjects(${1:idx}, ${2:projfn})"},
{"trigger": "EnumProjExtState", "contents": "EnumProjExtState(${1:proj}, ${2:\"extname\"}, ${3:idx}, ${4:key}, ${5:val})"},
{"trigger": "EnumRegionRenderMatrix", "contents": "EnumRegionRenderMatrix(${1:proj}, ${2:regionindex}, ${3:rendertrack})"},
{"trigger": "EnumTrackMIDIProgramNames", "contents": "EnumTrackMIDIProgramNames(${1:track}, ${2:programNumber}, ${3:#programName})"},
{"trigger": "EnumTrackMIDIProgramNamesEx", "contents": "EnumTrackMIDIProgramNamesEx(${1:proj}, ${2:track}, ${3:programNumber}, ${4:#programName})"},
{"trigger": "Envelope_Evaluate", "contents": "Envelope_Evaluate(${1:envelope}, ${2:time}, ${3:samplerate}, ${4:samplesRequested}, ${5:value}, ${6:dVdS}, ${7:ddVdS}, ${8:dddVdS})"},
{"trigger": "Envelope_FormatValue", "contents": "Envelope_FormatValue(${1:env}, ${2:value}, ${3:#buf})"},
{"trigger": "Envelope_GetParentTake", "contents": "Envelope_GetParentTake(${1:env}, ${2:index}, ${3:index2})"},
{"trigger": "Envelope_GetParentTrack", "contents": "Envelope_GetParentTrack(${1:env}, ${2:index}, ${3:index2})"},
{"trigger": "Envelope_SortPoints", "contents": "Envelope_SortPoints(${1:envelope})"},
{"trigger": "Envelope_SortPointsEx", "contents": "Envelope_SortPointsEx(${1:envelope}, ${2:autoitem_idx})"},
{"trigger": "eval", "contents": "eval(${1:\"code\"})"},
{"trigger": "ExecProcess", "contents": "ExecProcess(${1:#retval}, ${2:\"cmdline\"}, ${3:timeoutmsec})"},
{"trigger": "exp", "contents": "exp(${1:exponent})"},
{"trigger": "extension_api", "contents": "extension_api(${1:\"function_name\"})"},
{"trigger": "fclose", "contents": "fclose(${1:fp})"},
{"trigger": "feof", "contents": "feof(${1:fp})"},
{"trigger": "fflush", "contents": "fflush(${1:fp})"},
{"trigger": "fft", "contents": "fft(${1:buffer}, ${2:size})"},
{"trigger": "fft_ipermute", "contents": "fft_ipermute(${1:buffer}, ${2:size})"},
{"trigger": "fft_permute", "contents": "fft_permute(${1:buffer}, ${2:size})"},
{"trigger": "fft_real", "contents": "fft_real(${1:buffer}, ${2:size})"},
{"trigger": "fgetc", "contents": "fgetc(${1:fp})"},
{"trigger": "fgets", "contents": "fgets(${1:fp}, ${2:#str})"},
{"trigger": "file_exists", "contents": "file_exists(${1:\"path\"})"},
{"trigger": "FindTempoTimeSigMarker", "contents": "FindTempoTimeSigMarker(${1:project}, ${2:time})"},
{"trigger": "floor", "contents": "floor(${1:value})"},
{"trigger": "FNG_AddMidiNote", "contents": "FNG_AddMidiNote(${1:midiTake})"},
{"trigger": "FNG_AllocMidiTake", "contents": "FNG_AllocMidiTake(${1:take})"},
{"trigger": "FNG_CountMidiNotes", "contents": "FNG_CountMidiNotes(${1:midiTake})"},
{"trigger": "FNG_FreeMidiTake", "contents": "FNG_FreeMidiTake(${1:midiTake})"},
{"trigger": "FNG_GetMidiNote", "contents": "FNG_GetMidiNote(${1:midiTake}, ${2:index})"},
{"trigger": "FNG_GetMidiNoteIntProperty", "contents": "FNG_GetMidiNoteIntProperty(${1:midiNote}, ${2:\"property\"})"},
{"trigger": "FNG_SetMidiNoteIntProperty", "contents": "FNG_SetMidiNoteIntProperty(${1:midiNote}, ${2:\"property\"}, ${3:value})"},
{"trigger": "fopen", "contents": "fopen(${1:\"fn\"}, ${2:\"mode\"})"},
{"trigger": "format_timestr", "contents": "format_timestr(${1:tpos}, ${2:#buf})"},
{"trigger": "format_timestr_len", "contents": "format_timestr_len(${1:tpos}, ${2:#buf}, ${3:offset}, ${4:modeoverride})"},
{"trigger": "format_timestr_pos", "contents": "format_timestr_pos(${1:tpos}, ${2:#buf}, ${3:modeoverride})"},
{"trigger": "fprintf", "contents": "fprintf(${1:fp}, ${2:\"format\"})"},
{"trigger": "fread", "contents": "fread(${1:fp}, ${2:#str}, ${3:length})"},
{"trigger": "freembuf", "contents": "freembuf(${1:address})"},
{"trigger": "fseek", "contents": "fseek(${1:fp}, ${2:offset}, ${3:whence})"},
{"trigger": "ftell", "contents": "ftell(${1:fp})"},
{"trigger": "fwrite", "contents": "fwrite(${1:fp}, ${2:#str}, ${3:len})"},
{"trigger": "genGuid", "contents": "genGuid(${1:#gGUID})"},
{"trigger": "get_action_context", "contents": "get_action_context(${1:#filename}, ${2:sectionID}, ${3:cmdID}, ${4:mode}, ${5:resolution}, ${6:val})"},
{"trigger": "get_config_var_string", "contents": "get_config_var_string(${1:\"name\"}, ${2:#buf})"},
{"trigger": "get_ini_file", "contents": "get_ini_file(${1:#retval})"},
{"trigger": "GetActiveTake", "contents": "GetActiveTake(${1:item})"},
{"trigger": "GetAllProjectPlayStates", "contents": "GetAllProjectPlayStates(${1:ignoreProject})"},
{"trigger": "GetAppVersion", "contents": "GetAppVersion(${1:#retval})"},
{"trigger": "GetArmedCommand", "contents": "GetArmedCommand(${1:#sec})"},
{"trigger": "GetAudioAccessorEndTime", "contents": "GetAudioAccessorEndTime(${1:accessor})"},
{"trigger": "GetAudioAccessorHash", "contents": "GetAudioAccessorHash(${1:accessor}, ${2:#hashNeed128})"},
{"trigger": "GetAudioAccessorSamples", "contents": "GetAudioAccessorSamples(${1:accessor}, ${2:samplerate}, ${3:numchannels}, ${4:starttime_sec}, ${5:numsamplesperchannel}, ${6:samplebuffer})"},
{"trigger": "GetAudioAccessorStartTime", "contents": "GetAudioAccessorStartTime(${1:accessor})"},
{"trigger": "GetAudioDeviceInfo", "contents": "GetAudioDeviceInfo(${1:\"attribute\"}, ${2:#desc})"},
{"trigger": "GetConfigWantsDock", "contents": "GetConfigWantsDock(${1:\"ident_str\"})"},
{"trigger": "GetCurrentProjectInLoadSave", "contents": "GetCurrentProjectInLoadSave()"},
{"trigger": "GetCursorContext", "contents": "GetCursorContext()"},
{"trigger": "GetCursorContext2", "contents": "GetCursorContext2(${1:want_last_valid})"},
{"trigger": "GetCursorPosition", "contents": "GetCursorPosition()"},
{"trigger": "GetCursorPositionEx", "contents": "GetCursorPositionEx(${1:proj})"},
{"trigger": "GetDisplayedMediaItemColor", "contents": "GetDisplayedMediaItemColor(${1:item})"},
{"trigger": "GetDisplayedMediaItemColor2", "contents": "GetDisplayedMediaItemColor2(${1:item}, ${2:take})"},
{"trigger": "GetEnvelopeInfo_Value", "contents": "GetEnvelopeInfo_Value(${1:env}, ${2:\"parmname\"})"},
{"trigger": "GetEnvelopeName", "contents": "GetEnvelopeName(${1:env}, ${2:#buf})"},
{"trigger": "GetEnvelopePoint", "contents": "GetEnvelopePoint(${1:envelope}, ${2:ptidx}, ${3:time}, ${4:value}, ${5:shape}, ${6:tension}, ${7:selected})"},
{"trigger": "GetEnvelopePointByTime", "contents": "GetEnvelopePointByTime(${1:envelope}, ${2:time})"},
{"trigger": "GetEnvelopePointByTimeEx", "contents": "GetEnvelopePointByTimeEx(${1:envelope}, ${2:autoitem_idx}, ${3:time})"},
{"trigger": "GetEnvelopePointEx", "contents": "GetEnvelopePointEx(${1:envelope}, ${2:autoitem_idx}, ${3:ptidx}, ${4:time}, ${5:value}, ${6:shape}, ${7:tension}, ${8:selected})"},
{"trigger": "GetEnvelopeScalingMode", "contents": "GetEnvelopeScalingMode(${1:env})"},
{"trigger": "GetEnvelopeStateChunk", "contents": "GetEnvelopeStateChunk(${1:env}, ${2:#str}, ${3:isundo})"},
{"trigger": "GetExePath", "contents": "GetExePath(${1:#retval})"},
{"trigger": "GetExtState", "contents": "GetExtState(${1:#retval}, ${2:\"section\"}, ${3:\"key\"})"},
{"trigger": "GetFocusedFX", "contents": "GetFocusedFX(${1:tracknumber}, ${2:itemnumber}, ${3:fxnumber})"},
{"trigger": "GetFocusedFX2", "contents": "GetFocusedFX2(${1:tracknumber}, ${2:itemnumber}, ${3:fxnumber})"},
{"trigger": "GetFreeDiskSpaceForRecordPath", "contents": "GetFreeDiskSpaceForRecordPath(${1:proj}, ${2:pathidx})"},
{"trigger": "GetFXEnvelope", "contents": "GetFXEnvelope(${1:track}, ${2:fxindex}, ${3:parameterindex}, ${4:create})"},
{"trigger": "GetGlobalAutomationOverride", "contents": "GetGlobalAutomationOverride()"},
{"trigger": "GetHZoomLevel", "contents": "GetHZoomLevel()"},
{"trigger": "GetInputChannelName", "contents": "GetInputChannelName(${1:#retval}, ${2:channelIndex})"},
{"trigger": "GetInputOutputLatency", "contents": "GetInputOutputLatency(${1:inputlatency}, ${2:outputLatency})"},
{"trigger": "GetItemEditingTime2", "contents": "GetItemEditingTime2(${1:which_item}, ${2:flags})"},
{"trigger": "GetItemFromPoint", "contents": "GetItemFromPoint(${1:screen_x}, ${2:screen_y}, ${3:allow_locked}, ${4:take})"},
{"trigger": "GetItemProjectContext", "contents": "GetItemProjectContext(${1:item})"},
{"trigger": "GetItemStateChunk", "contents": "GetItemStateChunk(${1:item}, ${2:#str}, ${3:isundo})"},
{"trigger": "GetLastColorThemeFile", "contents": "GetLastColorThemeFile(${1:#retval})"},
{"trigger": "GetLastMarkerAndCurRegion", "contents": "GetLastMarkerAndCurRegion(${1:proj}, ${2:time}, ${3:markeridx}, ${4:regionidx})"},
{"trigger": "GetLastTouchedFX", "contents": "GetLastTouchedFX(${1:tracknumber}, ${2:fxnumber}, ${3:paramnumber})"},
{"trigger": "GetLastTouchedTrack", "contents": "GetLastTouchedTrack()"},
{"trigger": "GetMainHwnd", "contents": "GetMainHwnd()"},
{"trigger": "GetMasterMuteSoloFlags", "contents": "GetMasterMuteSoloFlags()"},
{"trigger": "GetMasterTrack", "contents": "GetMasterTrack(${1:proj})"},
{"trigger": "GetMasterTrackVisibility", "contents": "GetMasterTrackVisibility()"},
{"trigger": "GetMaxMidiInputs", "contents": "GetMaxMidiInputs()"},
{"trigger": "GetMaxMidiOutputs", "contents": "GetMaxMidiOutputs()"},
{"trigger": "GetMediaFileMetadata", "contents": "GetMediaFileMetadata(${1:mediaSource}, ${2:\"identifier\"}, ${3:#buf})"},
{"trigger": "GetMediaItem", "contents": "GetMediaItem(${1:proj}, ${2:itemidx})"},
{"trigger": "GetMediaItem_Track", "contents": "GetMediaItem_Track(${1:item})"},
{"trigger": "GetMediaItemInfo_Value", "contents": "GetMediaItemInfo_Value(${1:item}, ${2:\"parmname\"})"},
{"trigger": "GetMediaItemNumTakes", "contents": "GetMediaItemNumTakes(${1:item})"},
{"trigger": "GetMediaItemTake", "contents": "GetMediaItemTake(${1:item}, ${2:tk})"},
{"trigger": "GetMediaItemTake_Item", "contents": "GetMediaItemTake_Item(${1:take})"},
{"trigger": "GetMediaItemTake_Peaks", "contents": "GetMediaItemTake_Peaks(${1:take}, ${2:peakrate}, ${3:starttime}, ${4:numchannels}, ${5:numsamplesperchannel}, ${6:want_extra_type}, ${7:buf})"},
{"trigger": "GetMediaItemTake_Source", "contents": "GetMediaItemTake_Source(${1:take})"},
{"trigger": "GetMediaItemTake_Track", "contents": "GetMediaItemTake_Track(${1:take})"},
{"trigger": "GetMediaItemTakeByGUID", "contents": "GetMediaItemTakeByGUID(${1:project}, ${2:\"guidGUID\"})"},
{"trigger": "GetMediaItemTakeInfo_Value", "contents": "GetMediaItemTakeInfo_Value(${1:take}, ${2:\"parmname\"})"},
{"trigger": "GetMediaItemTrack", "contents": "GetMediaItemTrack(${1:item})"},
{"trigger": "GetMediaSourceFileName", "contents": "GetMediaSourceFileName(${1:source}, ${2:#filenamebuf})"},
{"trigger": "GetMediaSourceLength", "contents": "GetMediaSourceLength(${1:source}, ${2:lengthIsQN})"},
{"trigger": "GetMediaSourceNumChannels", "contents": "GetMediaSourceNumChannels(${1:source})"},
{"trigger": "GetMediaSourceParent", "contents": "GetMediaSourceParent(${1:src})"},
{"trigger": "GetMediaSourceSampleRate", "contents": "GetMediaSourceSampleRate(${1:source})"},
{"trigger": "GetMediaSourceType", "contents": "GetMediaSourceType(${1:source}, ${2:#typebuf})"},
{"trigger": "GetMediaTrackInfo_Value", "contents": "GetMediaTrackInfo_Value(${1:tr}, ${2:\"parmname\"})"},
{"trigger": "GetMIDIInputName", "contents": "GetMIDIInputName(${1:dev}, ${2:#nameout})"},
{"trigger": "GetMIDIOutputName", "contents": "GetMIDIOutputName(${1:dev}, ${2:#nameout})"},
{"trigger": "GetMixerScroll", "contents": "GetMixerScroll()"},
{"trigger": "GetMouseModifier", "contents": "GetMouseModifier(${1:\"context\"}, ${2:modifier_flag}, ${3:#action})"},
{"trigger": "GetMousePosition", "contents": "GetMousePosition(${1:x}, ${2:y})"},
{"trigger": "GetNumAudioInputs", "contents": "GetNumAudioInputs()"},
{"trigger": "GetNumAudioOutputs", "contents": "GetNumAudioOutputs()"},
{"trigger": "GetNumMIDIInputs", "contents": "GetNumMIDIInputs()"},
{"trigger": "GetNumMIDIOutputs", "contents": "GetNumMIDIOutputs()"},
{"trigger": "GetNumTakeMarkers", "contents": "GetNumTakeMarkers(${1:take})"},
{"trigger": "GetNumTracks", "contents": "GetNumTracks()"},
{"trigger": "GetOS", "contents": "GetOS(${1:#retval})"},
{"trigger": "GetOutputChannelName", "contents": "GetOutputChannelName(${1:#retval}, ${2:channelIndex})"},
{"trigger": "GetOutputLatency", "contents": "GetOutputLatency()"},
{"trigger": "GetParentTrack", "contents": "GetParentTrack(${1:track})"},
{"trigger": "GetPeakFileName", "contents": "GetPeakFileName(${1:\"fn\"}, ${2:#buf})"},
{"trigger": "GetPeakFileNameEx", "contents": "GetPeakFileNameEx(${1:\"fn\"}, ${2:#buf}, ${3:forWrite})"},
{"trigger": "GetPeakFileNameEx2", "contents": "GetPeakFileNameEx2(${1:\"fn\"}, ${2:#buf}, ${3:forWrite}, ${4:\"peaksfileextension\"})"},
{"trigger": "GetPlayPosition", "contents": "GetPlayPosition()"},
{"trigger": "GetPlayPosition2", "contents": "GetPlayPosition2()"},
{"trigger": "GetPlayPosition2Ex", "contents": "GetPlayPosition2Ex(${1:proj})"},
{"trigger": "GetPlayPositionEx", "contents": "GetPlayPositionEx(${1:proj})"},
{"trigger": "GetPlayState", "contents": "GetPlayState()"},
{"trigger": "GetPlayStateEx", "contents": "GetPlayStateEx(${1:proj})"},
{"trigger": "GetProjectLength", "contents": "GetProjectLength(${1:proj})"},
{"trigger": "GetProjectName", "contents": "GetProjectName(${1:proj}, ${2:#buf})"},
{"trigger": "GetProjectPath", "contents": "GetProjectPath(${1:#buf})"},
{"trigger": "GetProjectPathEx", "contents": "GetProjectPathEx(${1:proj}, ${2:#buf})"},
{"trigger": "GetProjectStateChangeCount", "contents": "GetProjectStateChangeCount(${1:proj})"},
{"trigger": "GetProjectTimeOffset", "contents": "GetProjectTimeOffset(${1:proj}, ${2:rndframe})"},
{"trigger": "GetProjectTimeSignature", "contents": "GetProjectTimeSignature(${1:bpm}, ${2:bpi})"},
{"trigger": "GetProjectTimeSignature2", "contents": "GetProjectTimeSignature2(${1:proj}, ${2:bpm}, ${3:bpi})"},
{"trigger": "GetProjExtState", "contents": "GetProjExtState(${1:proj}, ${2:\"extname\"}, ${3:\"key\"}, ${4:#val})"},
{"trigger": "GetResourcePath", "contents": "GetResourcePath(${1:#retval})"},
{"trigger": "GetSelectedEnvelope", "contents": "GetSelectedEnvelope(${1:proj})"},
{"trigger": "GetSelectedMediaItem", "contents": "GetSelectedMediaItem(${1:proj}, ${2:selitem})"},
{"trigger": "GetSelectedTrack", "contents": "GetSelectedTrack(${1:proj}, ${2:seltrackidx})"},
{"trigger": "GetSelectedTrack2", "contents": "GetSelectedTrack2(${1:proj}, ${2:seltrackidx}, ${3:wantmaster})"},
{"trigger": "GetSelectedTrackEnvelope", "contents": "GetSelectedTrackEnvelope(${1:proj})"},
{"trigger": "GetSet_ArrangeView2", "contents": "GetSet_ArrangeView2(${1:proj}, ${2:isSet}, ${3:screen_x_start}, ${4:screen_x_end}, ${5:start_time}, ${6:end_time})"},
{"trigger": "GetSet_LoopTimeRange", "contents": "GetSet_LoopTimeRange(${1:isSet}, ${2:isLoop}, ${3:start}, ${4:end}, ${5:allowautoseek})"},
{"trigger": "GetSet_LoopTimeRange2", "contents": "GetSet_LoopTimeRange2(${1:proj}, ${2:isSet}, ${3:isLoop}, ${4:start}, ${5:end}, ${6:allowautoseek})"},
{"trigger": "GetSetAutomationItemInfo", "contents": "GetSetAutomationItemInfo(${1:env}, ${2:autoitem_idx}, ${3:\"desc\"}, ${4:value}, ${5:is_set})"},
{"trigger": "GetSetAutomationItemInfo_String", "contents": "GetSetAutomationItemInfo_String(${1:env}, ${2:autoitem_idx}, ${3:\"desc\"}, ${4:#valuestrNeedBig}, ${5:is_set})"},
{"trigger": "GetSetEnvelopeInfo_String", "contents": "GetSetEnvelopeInfo_String(${1:env}, ${2:\"parmname\"}, ${3:#stringNeedBig}, ${4:setNewValue})"},
{"trigger": "GetSetEnvelopeState", "contents": "GetSetEnvelopeState(${1:env}, ${2:#str})"},
{"trigger": "GetSetEnvelopeState2", "contents": "GetSetEnvelopeState2(${1:env}, ${2:#str}, ${3:isundo})"},
{"trigger": "GetSetItemState", "contents": "GetSetItemState(${1:item}, ${2:#str})"},
{"trigger": "GetSetItemState2", "contents": "GetSetItemState2(${1:item}, ${2:#str}, ${3:isundo})"},
{"trigger": "GetSetMediaItemInfo_String", "contents": "GetSetMediaItemInfo_String(${1:item}, ${2:\"parmname\"}, ${3:#stringNeedBig}, ${4:setNewValue})"},
{"trigger": "GetSetMediaItemTakeInfo_String", "contents": "GetSetMediaItemTakeInfo_String(${1:tk}, ${2:\"parmname\"}, ${3:#stringNeedBig}, ${4:setNewValue})"},
{"trigger": "GetSetMediaTrackInfo_String", "contents": "GetSetMediaTrackInfo_String(${1:tr}, ${2:\"parmname\"}, ${3:#stringNeedBig}, ${4:setNewValue})"},
{"trigger": "GetSetProjectAuthor", "contents": "GetSetProjectAuthor(${1:proj}, ${2:set}, ${3:#author})"},
{"trigger": "GetSetProjectGrid", "contents": "GetSetProjectGrid(${1:project}, ${2:set}, ${3:division}, ${4:swingmode}, ${5:swingamt})"},
{"trigger": "GetSetProjectInfo", "contents": "GetSetProjectInfo(${1:project}, ${2:\"desc\"}, ${3:value}, ${4:is_set})"},
{"trigger": "GetSetProjectInfo_String", "contents": "GetSetProjectInfo_String(${1:project}, ${2:\"desc\"}, ${3:#valuestrNeedBig}, ${4:is_set})"},
{"trigger": "GetSetProjectNotes", "contents": "GetSetProjectNotes(${1:proj}, ${2:set}, ${3:#notes})"},
{"trigger": "GetSetRepeat", "contents": "GetSetRepeat(${1:val})"},
{"trigger": "GetSetRepeatEx", "contents": "GetSetRepeatEx(${1:proj}, ${2:val})"},
{"trigger": "GetSetTrackGroupMembership", "contents": "GetSetTrackGroupMembership(${1:tr}, ${2:\"groupname\"}, ${3:setmask}, ${4:setvalue})"},
{"trigger": "GetSetTrackGroupMembershipHigh", "contents": "GetSetTrackGroupMembershipHigh(${1:tr}, ${2:\"groupname\"}, ${3:setmask}, ${4:setvalue})"},
{"trigger": "GetSetTrackSendInfo_String", "contents": "GetSetTrackSendInfo_String(${1:tr}, ${2:category}, ${3:sendidx}, ${4:\"parmname\"}, ${5:#stringNeedBig}, ${6:setNewValue})"},
{"trigger": "GetSetTrackState", "contents": "GetSetTrackState(${1:track}, ${2:#str})"},
{"trigger": "GetSetTrackState2", "contents": "GetSetTrackState2(${1:track}, ${2:#str}, ${3:isundo})"},
{"trigger": "GetSubProjectFromSource", "contents": "GetSubProjectFromSource(${1:src})"},
{"trigger": "GetTake", "contents": "GetTake(${1:item}, ${2:takeidx})"},
{"trigger": "GetTakeEnvelope", "contents": "GetTakeEnvelope(${1:take}, ${2:envidx})"},
{"trigger": "GetTakeEnvelopeByName", "contents": "GetTakeEnvelopeByName(${1:take}, ${2:\"envname\"})"},
{"trigger": "GetTakeMarker", "contents": "GetTakeMarker(${1:take}, ${2:idx}, ${3:#name}, ${4:color})"},
{"trigger": "GetTakeName", "contents": "GetTakeName(${1:#retval}, ${2:take})"},
{"trigger": "GetTakeNumStretchMarkers", "contents": "GetTakeNumStretchMarkers(${1:take})"},
{"trigger": "GetTakeStretchMarker", "contents": "GetTakeStretchMarker(${1:take}, ${2:idx}, ${3:pos}, ${4:srcpos})"},
{"trigger": "GetTakeStretchMarkerSlope", "contents": "GetTakeStretchMarkerSlope(${1:take}, ${2:idx})"},
{"trigger": "GetTCPFXParm", "contents": "GetTCPFXParm(${1:project}, ${2:track}, ${3:index}, ${4:fxindex}, ${5:parmidx})"},
{"trigger": "GetTempoMatchPlayRate", "contents": "GetTempoMatchPlayRate(${1:source}, ${2:srcscale}, ${3:position}, ${4:mult}, ${5:rate}, ${6:targetlen})"},
{"trigger": "GetTempoTimeSigMarker", "contents": "GetTempoTimeSigMarker(${1:proj}, ${2:ptidx}, ${3:timepos}, ${4:measurepos}, ${5:beatpos}, ${6:bpm}, ${7:timesig_num}, ${8:timesig_denom}, ${9:lineartempo})"},
{"trigger": "GetThemeColor", "contents": "GetThemeColor(${1:\"ini_key\"}, ${2:flags})"},
{"trigger": "GetThingFromPoint", "contents": "GetThingFromPoint(${1:screen_x}, ${2:screen_y}, ${3:#info})"},
{"trigger": "GetToggleCommandState", "contents": "GetToggleCommandState(${1:command_id})"},
{"trigger": "GetToggleCommandStateEx", "contents": "GetToggleCommandStateEx(${1:section_id}, ${2:command_id})"},
{"trigger": "GetTooltipWindow", "contents": "GetTooltipWindow()"},
{"trigger": "GetTrack", "contents": "GetTrack(${1:proj}, ${2:trackidx})"},
{"trigger": "GetTrackAutomationMode", "contents": "GetTrackAutomationMode(${1:tr})"},
{"trigger": "GetTrackColor", "contents": "GetTrackColor(${1:track})"},
{"trigger": "GetTrackDepth", "contents": "GetTrackDepth(${1:track})"},
{"trigger": "GetTrackEnvelope", "contents": "GetTrackEnvelope(${1:track}, ${2:envidx})"},
{"trigger": "GetTrackEnvelopeByChunkName", "contents": "GetTrackEnvelopeByChunkName(${1:tr}, ${2:\"cfgchunkname_or_guid\"})"},
{"trigger": "GetTrackEnvelopeByName", "contents": "GetTrackEnvelopeByName(${1:track}, ${2:\"envname\"})"},
{"trigger": "GetTrackFromPoint", "contents": "GetTrackFromPoint(${1:screen_x}, ${2:screen_y}, ${3:info})"},
{"trigger": "GetTrackGUID", "contents": "GetTrackGUID(${1:#retguid}, ${2:tr})"},
{"trigger": "GetTrackMediaItem", "contents": "GetTrackMediaItem(${1:tr}, ${2:itemidx})"},
{"trigger": "GetTrackMIDILyrics", "contents": "GetTrackMIDILyrics(${1:track}, ${2:flag}, ${3:#buf})"},
{"trigger": "GetTrackMIDINoteName", "contents": "GetTrackMIDINoteName(${1:#retval}, ${2:track}, ${3:pitch}, ${4:chan})"},
{"trigger": "GetTrackMIDINoteNameEx", "contents": "GetTrackMIDINoteNameEx(${1:#retval}, ${2:proj}, ${3:track}, ${4:pitch}, ${5:chan})"},
{"trigger": "GetTrackMIDINoteRange", "contents": "GetTrackMIDINoteRange(${1:proj}, ${2:track}, ${3:note_lo}, ${4:note_hi})"},
{"trigger": "GetTrackName", "contents": "GetTrackName(${1:track}, ${2:#buf})"},
{"trigger": "GetTrackNumMediaItems", "contents": "GetTrackNumMediaItems(${1:tr})"},
{"trigger": "GetTrackNumSends", "contents": "GetTrackNumSends(${1:tr}, ${2:category})"},
{"trigger": "GetTrackReceiveName", "contents": "GetTrackReceiveName(${1:track}, ${2:recv_index}, ${3:#buf})"},
{"trigger": "GetTrackReceiveUIMute", "contents": "GetTrackReceiveUIMute(${1:track}, ${2:recv_index}, ${3:mute})"},
{"trigger": "GetTrackReceiveUIVolPan", "contents": "GetTrackReceiveUIVolPan(${1:track}, ${2:recv_index}, ${3:volume}, ${4:pan})"},
{"trigger": "GetTrackSendInfo_Value", "contents": "GetTrackSendInfo_Value(${1:tr}, ${2:category}, ${3:sendidx}, ${4:\"parmname\"})"},
{"trigger": "GetTrackSendName", "contents": "GetTrackSendName(${1:track}, ${2:send_index}, ${3:#buf})"},
{"trigger": "GetTrackSendUIMute", "contents": "GetTrackSendUIMute(${1:track}, ${2:send_index}, ${3:mute})"},
{"trigger": "GetTrackSendUIVolPan", "contents": "GetTrackSendUIVolPan(${1:track}, ${2:send_index}, ${3:volume}, ${4:pan})"},
{"trigger": "GetTrackState", "contents": "GetTrackState(${1:#retval}, ${2:track}, ${3:flags})"},
{"trigger": "GetTrackStateChunk", "contents": "GetTrackStateChunk(${1:track}, ${2:#str}, ${3:isundo})"},
{"trigger": "GetTrackUIMute", "contents": "GetTrackUIMute(${1:track}, ${2:mute})"},
{"trigger": "GetTrackUIPan", "contents": "GetTrackUIPan(${1:track}, ${2:pan1}, ${3:pan2}, ${4:panmode})"},
{"trigger": "GetTrackUIVolPan", "contents": "GetTrackUIVolPan(${1:track}, ${2:volume}, ${3:pan})"},
{"trigger": "GetUnderrunTime", "contents": "GetUnderrunTime(${1:audio_xrun}, ${2:media_xrun}, ${3:curtime})"},
{"trigger": "GetUserFileNameForRead", "contents": "GetUserFileNameForRead(${1:#filenameNeed4096}, ${2:\"title\"}, ${3:\"defext\"})"},
{"trigger": "GetUserInputs", "contents": "GetUserInputs(${1:\"title\"}, ${2:num_inputs}, ${3:\"captions_csv\"}, ${4:#retvals_csv})"},
{"trigger": "gfx_arc", "contents": "gfx_arc(${1:x}, ${2:y}, ${3:r}, ${4:ang1}, ${5:ang2}, ${6:antialias})"},
{"trigger": "gfx_blit", "contents": "gfx_blit(${1:source}, ${2:}, ${3:}, ${4:}, ${5:}, ${6:}, ${7:}, ${8:}, ${9:}, ${10:}, ${11:}, ${12:}, ${13:})"},
{"trigger": "gfx_blitext", "contents": "gfx_blitext(${1:source}, ${2:coordinatelist}, ${3:rotation})"},
{"trigger": "gfx_blurto", "contents": "gfx_blurto(${1:x}, ${2:y})"},
{"trigger": "gfx_circle", "contents": "gfx_circle(${1:x}, ${2:y}, ${3:r}, ${4:fill}, ${5:antialias})"},
{"trigger": "gfx_clienttoscreen", "contents": "gfx_clienttoscreen(${1:x}, ${2:y})"},
{"trigger": "gfx_deltablit", "contents": "gfx_deltablit(${1:srcimg}, ${2:srcs}, ${3:srct}, ${4:srcw}, ${5:srch}, ${6:destx}, ${7:desty}, ${8:destw}, ${9:desth}, ${10:dsdx}, ${11:dtdx}, ${12:dsdy}, ${13:dtdy}, ${14:dsdxdy}, ${15:dtdxdy}, ${16:usecliprect=1})"},
{"trigger": "gfx_dock", "contents": "gfx_dock(${1:v}, ${2:wx}, ${3:wy}, ${4:ww}, ${5:wh})"},
{"trigger": "gfx_drawchar", "contents": "gfx_drawchar(${1:char})"},
{"trigger": "gfx_drawnumber", "contents": "gfx_drawnumber(${1:n}, ${2:ndigits})"},
{"trigger": "gfx_drawstr", "contents": "gfx_drawstr(${1:\"str\"}, ${2:flags}, ${3:right}, ${4:bottom})"},
{"trigger": "gfx_getchar", "contents": "gfx_getchar(${1:char})"},
{"trigger": "gfx_getdropfile", "contents": "gfx_getdropfile(${1:idx}, ${2:#str})"},
{"trigger": "gfx_getfont", "contents": "gfx_getfont(${1:#str})"},
{"trigger": "gfx_getimgdim", "contents": "gfx_getimgdim(${1:image}, ${2:w}, ${3:h})"},
{"trigger": "gfx_getpixel", "contents": "gfx_getpixel(${1:r}, ${2:g}, ${3:b})"},
{"trigger": "gfx_gradrect", "contents": "gfx_gradrect(${1:x}, ${2:y}, ${3:w}, ${4:h}, ${5:}, ${6:g}, ${7:b}, ${8:a}, ${9:}, ${10:}, ${11:}, ${12:}, ${13:}, ${14:}, ${15:}, ${16:})"},
{"trigger": "gfx_init", "contents": "gfx_init(${1:\"name\"}, ${2:width}, ${3:height}, ${4:dockstate}, ${5:xpos}, ${6:ypos})"},
{"trigger": "gfx_line", "contents": "gfx_line(${1:x}, ${2:y}, ${3:x2}, ${4:y2}, ${5:aa})"},
{"trigger": "gfx_lineto", "contents": "gfx_lineto(${1:x}, ${2:y}, ${3:aa})"},
{"trigger": "gfx_loadimg", "contents": "gfx_loadimg(${1:image}, ${2:\"filename\"})"},
{"trigger": "gfx_measurechar", "contents": "gfx_measurechar(${1:character}, ${2:w}, ${3:h})"},
{"trigger": "gfx_measurestr", "contents": "gfx_measurestr(${1:\"str\"}, ${2:w}, ${3:h})"},
{"trigger": "gfx_muladdrect", "contents": "gfx_muladdrect(${1:x}, ${2:y}, ${3:w}, ${4:h}, ${5:mul_r}, ${6:mul_g}, ${7:mul_b}, ${8:mul_a}, ${9:add_r}, ${10:add_g}, ${11:add_b}, ${12:add_a})"},
{"trigger": "gfx_printf", "contents": "gfx_printf(${1:\"format\"})"},
{"trigger": "gfx_quit", "contents": "gfx_quit()"},
{"trigger": "gfx_rect", "contents": "gfx_rect(${1:x}, ${2:y}, ${3:w}, ${4:h}, ${5:filled})"},
{"trigger": "gfx_rectto", "contents": "gfx_rectto(${1:x}, ${2:y})"},
{"trigger": "gfx_roundrect", "contents": "gfx_roundrect(${1:x}, ${2:y}, ${3:w}, ${4:h}, ${5:radius}, ${6:antialias})"},
{"trigger": "gfx_screentoclient", "contents": "gfx_screentoclient(${1:x}, ${2:y})"},
{"trigger": "gfx_set", "contents": "gfx_set(${1:r}, ${2:g}, ${3:b}, ${4:a}, ${5:mode}, ${6:dest}, ${7:a2})"},
{"trigger": "gfx_setcursor", "contents": "gfx_setcursor(${1:resource_id}, ${2:custom_cursor_name})"},
{"trigger": "gfx_setfont", "contents": "gfx_setfont(${1:idx}, ${2:\"fontface\"}, ${3:}, ${4:})"},
{"trigger": "gfx_setimgdim", "contents": "gfx_setimgdim(${1:image}, ${2:w}, ${3:h})"},
{"trigger": "gfx_setpixel", "contents": "gfx_setpixel(${1:r}, ${2:g}, ${3:b})"},
{"trigger": "gfx_showmenu", "contents": "gfx_showmenu(${1:\"str\"})"},
{"trigger": "gfx_transformblit", "contents": "gfx_transformblit(${1:srcimg}, ${2:destx}, ${3:desty}, ${4:destw}, ${5:desth}, ${6:div_w}, ${7:div_h}, ${8:table})"},
{"trigger": "gfx_triangle", "contents": "gfx_triangle(${1:x1}, ${2:y1}, ${3:x2}, ${4:y2}, ${5:x3}, ${6:y3x4}, ${7:y4...})"},
{"trigger": "gfx_update", "contents": "gfx_update()"},
{"trigger": "GoToMarker", "contents": "GoToMarker(${1:proj}, ${2:marker_index}, ${3:use_timeline_order})"},
{"trigger": "GoToRegion", "contents": "GoToRegion(${1:proj}, ${2:region_index}, ${3:use_timeline_order})"},
{"trigger": "GR_SelectColor", "contents": "GR_SelectColor(${1:hwnd}, ${2:color})"},
{"trigger": "GSC_mainwnd", "contents": "GSC_mainwnd(${1:t})"},
{"trigger": "guidToString", "contents": "guidToString(${1:\"gGUID\"}, ${2:#destNeed64})"},
{"trigger": "HasExtState", "contents": "HasExtState(${1:\"section\"}, ${2:\"key\"})"},
{"trigger": "HasTrackMIDIPrograms", "contents": "HasTrackMIDIPrograms(${1:#retval}, ${2:track})"},
{"trigger": "HasTrackMIDIProgramsEx", "contents": "HasTrackMIDIProgramsEx(${1:#retval}, ${2:proj}, ${3:track})"},
{"trigger": "Help_Set", "contents": "Help_Set(${1:\"helpstring\"}, ${2:is_temporary_help})"},
{"trigger": "ifft", "contents": "ifft(${1:buffer}, ${2:size})"},
{"trigger": "ifft_real", "contents": "ifft_real(${1:buffer}, ${2:size})"},
{"trigger": "image_resolve_fn", "contents": "image_resolve_fn(${1:\"in\"}, ${2:#out})"},
{"trigger": "ImGui_AcceptDragDropPayload", "contents": "ImGui_AcceptDragDropPayload(${1:ctx}, ${2:\"type\"}, ${3:#payload}, ${4:flagsIn})"},
{"trigger": "ImGui_AcceptDragDropPayloadFiles", "contents": "ImGui_AcceptDragDropPayloadFiles(${1:ctx}, ${2:count}, ${3:flagsIn})"},
{"trigger": "ImGui_AcceptDragDropPayloadRGB", "contents": "ImGui_AcceptDragDropPayloadRGB(${1:ctx}, ${2:rgb}, ${3:flagsIn})"},
{"trigger": "ImGui_AcceptDragDropPayloadRGBA", "contents": "ImGui_AcceptDragDropPayloadRGBA(${1:ctx}, ${2:rgba}, ${3:flagsIn})"},
{"trigger": "ImGui_AlignTextToFramePadding", "contents": "ImGui_AlignTextToFramePadding(${1:ctx})"},
{"trigger": "ImGui_ArrowButton", "contents": "ImGui_ArrowButton(${1:ctx}, ${2:\"str_id\"}, ${3:dir})"},
{"trigger": "ImGui_AttachFont", "contents": "ImGui_AttachFont(${1:ctx}, ${2:font})"},
{"trigger": "ImGui_Begin", "contents": "ImGui_Begin(${1:ctx}, ${2:\"name\"}, ${3:p_open}, ${4:flagsIn})"},
{"trigger": "ImGui_BeginChild", "contents": "ImGui_BeginChild(${1:ctx}, ${2:\"str_id\"}, ${3:size_wIn}, ${4:size_hIn}, ${5:borderIn}, ${6:flagsIn})"},
{"trigger": "ImGui_BeginChildFrame", "contents": "ImGui_BeginChildFrame(${1:ctx}, ${2:\"str_id\"}, ${3:size_w}, ${4:size_h}, ${5:flagsIn})"},
{"trigger": "ImGui_BeginCombo", "contents": "ImGui_BeginCombo(${1:ctx}, ${2:\"label\"}, ${3:\"preview_value\"}, ${4:flagsIn})"},
{"trigger": "ImGui_BeginDisabled", "contents": "ImGui_BeginDisabled(${1:ctx}, ${2:disabledIn})"},
{"trigger": "ImGui_BeginDragDropSource", "contents": "ImGui_BeginDragDropSource(${1:ctx}, ${2:flagsIn})"},
{"trigger": "ImGui_BeginDragDropTarget", "contents": "ImGui_BeginDragDropTarget(${1:ctx})"},
{"trigger": "ImGui_BeginGroup", "contents": "ImGui_BeginGroup(${1:ctx})"},
{"trigger": "ImGui_BeginListBox", "contents": "ImGui_BeginListBox(${1:ctx}, ${2:\"label\"}, ${3:size_wIn}, ${4:size_hIn})"},
{"trigger": "ImGui_BeginMenu", "contents": "ImGui_BeginMenu(${1:ctx}, ${2:\"label\"}, ${3:enabledIn})"},
{"trigger": "ImGui_BeginMenuBar", "contents": "ImGui_BeginMenuBar(${1:ctx})"},
{"trigger": "ImGui_BeginPopup", "contents": "ImGui_BeginPopup(${1:ctx}, ${2:\"str_id\"}, ${3:flagsIn})"},
{"trigger": "ImGui_BeginPopupContextItem", "contents": "ImGui_BeginPopupContextItem(${1:ctx}, ${2:\"str_idIn\"}, ${3:popup_flagsIn})"},
{"trigger": "ImGui_BeginPopupContextWindow", "contents": "ImGui_BeginPopupContextWindow(${1:ctx}, ${2:\"str_idIn\"}, ${3:popup_flagsIn})"},
{"trigger": "ImGui_BeginPopupModal", "contents": "ImGui_BeginPopupModal(${1:ctx}, ${2:\"name\"}, ${3:p_open}, ${4:flagsIn})"},
{"trigger": "ImGui_BeginTabBar", "contents": "ImGui_BeginTabBar(${1:ctx}, ${2:\"str_id\"}, ${3:flagsIn})"},
{"trigger": "ImGui_BeginTabItem", "contents": "ImGui_BeginTabItem(${1:ctx}, ${2:\"label\"}, ${3:p_open}, ${4:flagsIn})"},
{"trigger": "ImGui_BeginTable", "contents": "ImGui_BeginTable(${1:ctx}, ${2:\"str_id\"}, ${3:column}, ${4:flagsIn}, ${5:outer_size_wIn}, ${6:outer_size_hIn}, ${7:inner_widthIn})"},
{"trigger": "ImGui_BeginTooltip", "contents": "ImGui_BeginTooltip(${1:ctx})"},
{"trigger": "ImGui_Bullet", "contents": "ImGui_Bullet(${1:ctx})"},
{"trigger": "ImGui_BulletText", "contents": "ImGui_BulletText(${1:ctx}, ${2:\"text\"})"},
{"trigger": "ImGui_Button", "contents": "ImGui_Button(${1:ctx}, ${2:\"label\"}, ${3:size_wIn}, ${4:size_hIn})"},
{"trigger": "ImGui_ButtonFlags_MouseButtonLeft", "contents": "ImGui_ButtonFlags_MouseButtonLeft()"},
{"trigger": "ImGui_ButtonFlags_MouseButtonMiddle", "contents": "ImGui_ButtonFlags_MouseButtonMiddle()"},
{"trigger": "ImGui_ButtonFlags_MouseButtonRight", "contents": "ImGui_ButtonFlags_MouseButtonRight()"},
{"trigger": "ImGui_ButtonFlags_None", "contents": "ImGui_ButtonFlags_None()"},
{"trigger": "ImGui_CalcItemWidth", "contents": "ImGui_CalcItemWidth(${1:ctx})"},
{"trigger": "ImGui_CalcTextSize", "contents": "ImGui_CalcTextSize(${1:ctx}, ${2:\"text\"}, ${3:w}, ${4:h}, ${5:hide_text_after_double_hashIn}, ${6:wrap_widthIn})"},
{"trigger": "ImGui_CaptureKeyboardFromApp", "contents": "ImGui_CaptureKeyboardFromApp(${1:ctx}, ${2:want_capture_keyboard_valueIn})"},
{"trigger": "ImGui_Checkbox", "contents": "ImGui_Checkbox(${1:ctx}, ${2:\"label\"}, ${3:v})"},
{"trigger": "ImGui_CheckboxFlags", "contents": "ImGui_CheckboxFlags(${1:ctx}, ${2:\"label\"}, ${3:flags}, ${4:flags_value})"},
{"trigger": "ImGui_CloseCurrentPopup", "contents": "ImGui_CloseCurrentPopup(${1:ctx})"},
{"trigger": "ImGui_Col_Border", "contents": "ImGui_Col_Border()"},
{"trigger": "ImGui_Col_BorderShadow", "contents": "ImGui_Col_BorderShadow()"},
{"trigger": "ImGui_Col_Button", "contents": "ImGui_Col_Button()"},
{"trigger": "ImGui_Col_ButtonActive", "contents": "ImGui_Col_ButtonActive()"},
{"trigger": "ImGui_Col_ButtonHovered", "contents": "ImGui_Col_ButtonHovered()"},
{"trigger": "ImGui_Col_CheckMark", "contents": "ImGui_Col_CheckMark()"},
{"trigger": "ImGui_Col_ChildBg", "contents": "ImGui_Col_ChildBg()"},
{"trigger": "ImGui_Col_DockingEmptyBg", "contents": "ImGui_Col_DockingEmptyBg()"},
{"trigger": "ImGui_Col_DockingPreview", "contents": "ImGui_Col_DockingPreview()"},
{"trigger": "ImGui_Col_DragDropTarget", "contents": "ImGui_Col_DragDropTarget()"},
{"trigger": "ImGui_Col_FrameBg", "contents": "ImGui_Col_FrameBg()"},
{"trigger": "ImGui_Col_FrameBgActive", "contents": "ImGui_Col_FrameBgActive()"},
{"trigger": "ImGui_Col_FrameBgHovered", "contents": "ImGui_Col_FrameBgHovered()"},
{"trigger": "ImGui_Col_Header", "contents": "ImGui_Col_Header()"},
{"trigger": "ImGui_Col_HeaderActive", "contents": "ImGui_Col_HeaderActive()"},
{"trigger": "ImGui_Col_HeaderHovered", "contents": "ImGui_Col_HeaderHovered()"},
{"trigger": "ImGui_Col_MenuBarBg", "contents": "ImGui_Col_MenuBarBg()"},
{"trigger": "ImGui_Col_ModalWindowDimBg", "contents": "ImGui_Col_ModalWindowDimBg()"},
{"trigger": "ImGui_Col_NavHighlight", "contents": "ImGui_Col_NavHighlight()"},
{"trigger": "ImGui_Col_NavWindowingDimBg", "contents": "ImGui_Col_NavWindowingDimBg()"},
{"trigger": "ImGui_Col_NavWindowingHighlight", "contents": "ImGui_Col_NavWindowingHighlight()"},
{"trigger": "ImGui_Col_PlotHistogram", "contents": "ImGui_Col_PlotHistogram()"},
{"trigger": "ImGui_Col_PlotHistogramHovered", "contents": "ImGui_Col_PlotHistogramHovered()"},
{"trigger": "ImGui_Col_PlotLines", "contents": "ImGui_Col_PlotLines()"},
{"trigger": "ImGui_Col_PlotLinesHovered", "contents": "ImGui_Col_PlotLinesHovered()"},
{"trigger": "ImGui_Col_PopupBg", "contents": "ImGui_Col_PopupBg()"},
{"trigger": "ImGui_Col_ResizeGrip", "contents": "ImGui_Col_ResizeGrip()"},
{"trigger": "ImGui_Col_ResizeGripActive", "contents": "ImGui_Col_ResizeGripActive()"},
{"trigger": "ImGui_Col_ResizeGripHovered", "contents": "ImGui_Col_ResizeGripHovered()"},
{"trigger": "ImGui_Col_ScrollbarBg", "contents": "ImGui_Col_ScrollbarBg()"},
{"trigger": "ImGui_Col_ScrollbarGrab", "contents": "ImGui_Col_ScrollbarGrab()"},
{"trigger": "ImGui_Col_ScrollbarGrabActive", "contents": "ImGui_Col_ScrollbarGrabActive()"},
{"trigger": "ImGui_Col_ScrollbarGrabHovered", "contents": "ImGui_Col_ScrollbarGrabHovered()"},
{"trigger": "ImGui_Col_Separator", "contents": "ImGui_Col_Separator()"},
{"trigger": "ImGui_Col_SeparatorActive", "contents": "ImGui_Col_SeparatorActive()"},
{"trigger": "ImGui_Col_SeparatorHovered", "contents": "ImGui_Col_SeparatorHovered()"},
{"trigger": "ImGui_Col_SliderGrab", "contents": "ImGui_Col_SliderGrab()"},
{"trigger": "ImGui_Col_SliderGrabActive", "contents": "ImGui_Col_SliderGrabActive()"},
{"trigger": "ImGui_Col_Tab", "contents": "ImGui_Col_Tab()"},
{"trigger": "ImGui_Col_TabActive", "contents": "ImGui_Col_TabActive()"},
{"trigger": "ImGui_Col_TabHovered", "contents": "ImGui_Col_TabHovered()"},
{"trigger": "ImGui_Col_TableBorderLight", "contents": "ImGui_Col_TableBorderLight()"},
{"trigger": "ImGui_Col_TableBorderStrong", "contents": "ImGui_Col_TableBorderStrong()"},
{"trigger": "ImGui_Col_TableHeaderBg", "contents": "ImGui_Col_TableHeaderBg()"},
{"trigger": "ImGui_Col_TableRowBg", "contents": "ImGui_Col_TableRowBg()"},
{"trigger": "ImGui_Col_TableRowBgAlt", "contents": "ImGui_Col_TableRowBgAlt()"},
{"trigger": "ImGui_Col_TabUnfocused", "contents": "ImGui_Col_TabUnfocused()"},
{"trigger": "ImGui_Col_TabUnfocusedActive", "contents": "ImGui_Col_TabUnfocusedActive()"},
{"trigger": "ImGui_Col_Text", "contents": "ImGui_Col_Text()"},
{"trigger": "ImGui_Col_TextDisabled", "contents": "ImGui_Col_TextDisabled()"},
{"trigger": "ImGui_Col_TextSelectedBg", "contents": "ImGui_Col_TextSelectedBg()"},
{"trigger": "ImGui_Col_TitleBg", "contents": "ImGui_Col_TitleBg()"},
{"trigger": "ImGui_Col_TitleBgActive", "contents": "ImGui_Col_TitleBgActive()"},
{"trigger": "ImGui_Col_TitleBgCollapsed", "contents": "ImGui_Col_TitleBgCollapsed()"},
{"trigger": "ImGui_Col_WindowBg", "contents": "ImGui_Col_WindowBg()"},
{"trigger": "ImGui_CollapsingHeader", "contents": "ImGui_CollapsingHeader(${1:ctx}, ${2:\"label\"}, ${3:p_visible}, ${4:flagsIn})"},
{"trigger": "ImGui_ColorButton", "contents": "ImGui_ColorButton(${1:ctx}, ${2:\"desc_id\"}, ${3:col_rgba}, ${4:flagsIn}, ${5:size_wIn}, ${6:size_hIn})"},
{"trigger": "ImGui_ColorConvertHSVtoRGB", "contents": "ImGui_ColorConvertHSVtoRGB(${1:h}, ${2:s}, ${3:v}, ${4:alphaIn}, ${5:r}, ${6:g}, ${7:b})"},
{"trigger": "ImGui_ColorConvertNative", "contents": "ImGui_ColorConvertNative(${1:rgb})"},
{"trigger": "ImGui_ColorConvertRGBtoHSV", "contents": "ImGui_ColorConvertRGBtoHSV(${1:r}, ${2:g}, ${3:b}, ${4:alphaIn}, ${5:h}, ${6:s}, ${7:v})"},
{"trigger": "ImGui_ColorEdit3", "contents": "ImGui_ColorEdit3(${1:ctx}, ${2:\"label\"}, ${3:col_rgb}, ${4:flagsIn})"},
{"trigger": "ImGui_ColorEdit4", "contents": "ImGui_ColorEdit4(${1:ctx}, ${2:\"label\"}, ${3:col_rgba}, ${4:flagsIn})"},
{"trigger": "ImGui_ColorEditFlags_AlphaBar", "contents": "ImGui_ColorEditFlags_AlphaBar()"},
{"trigger": "ImGui_ColorEditFlags_AlphaPreview", "contents": "ImGui_ColorEditFlags_AlphaPreview()"},
{"trigger": "ImGui_ColorEditFlags_AlphaPreviewHalf", "contents": "ImGui_ColorEditFlags_AlphaPreviewHalf()"},
{"trigger": "ImGui_ColorEditFlags_DisplayHex", "contents": "ImGui_ColorEditFlags_DisplayHex()"},
{"trigger": "ImGui_ColorEditFlags_DisplayHSV", "contents": "ImGui_ColorEditFlags_DisplayHSV()"},
{"trigger": "ImGui_ColorEditFlags_DisplayRGB", "contents": "ImGui_ColorEditFlags_DisplayRGB()"},
{"trigger": "ImGui_ColorEditFlags_Float", "contents": "ImGui_ColorEditFlags_Float()"},
{"trigger": "ImGui_ColorEditFlags_InputHSV", "contents": "ImGui_ColorEditFlags_InputHSV()"},
{"trigger": "ImGui_ColorEditFlags_InputRGB", "contents": "ImGui_ColorEditFlags_InputRGB()"},
{"trigger": "ImGui_ColorEditFlags_NoAlpha", "contents": "ImGui_ColorEditFlags_NoAlpha()"},
{"trigger": "ImGui_ColorEditFlags_NoBorder", "contents": "ImGui_ColorEditFlags_NoBorder()"},
{"trigger": "ImGui_ColorEditFlags_NoDragDrop", "contents": "ImGui_ColorEditFlags_NoDragDrop()"},
{"trigger": "ImGui_ColorEditFlags_NoInputs", "contents": "ImGui_ColorEditFlags_NoInputs()"},
{"trigger": "ImGui_ColorEditFlags_NoLabel", "contents": "ImGui_ColorEditFlags_NoLabel()"},
{"trigger": "ImGui_ColorEditFlags_None", "contents": "ImGui_ColorEditFlags_None()"},
{"trigger": "ImGui_ColorEditFlags_NoOptions", "contents": "ImGui_ColorEditFlags_NoOptions()"},
{"trigger": "ImGui_ColorEditFlags_NoPicker", "contents": "ImGui_ColorEditFlags_NoPicker()"},
{"trigger": "ImGui_ColorEditFlags_NoSidePreview", "contents": "ImGui_ColorEditFlags_NoSidePreview()"},
{"trigger": "ImGui_ColorEditFlags_NoSmallPreview", "contents": "ImGui_ColorEditFlags_NoSmallPreview()"},
{"trigger": "ImGui_ColorEditFlags_NoTooltip", "contents": "ImGui_ColorEditFlags_NoTooltip()"},
{"trigger": "ImGui_ColorEditFlags_PickerHueBar", "contents": "ImGui_ColorEditFlags_PickerHueBar()"},
{"trigger": "ImGui_ColorEditFlags_PickerHueWheel", "contents": "ImGui_ColorEditFlags_PickerHueWheel()"},
{"trigger": "ImGui_ColorEditFlags_Uint8", "contents": "ImGui_ColorEditFlags_Uint8()"},
{"trigger": "ImGui_ColorPicker3", "contents": "ImGui_ColorPicker3(${1:ctx}, ${2:\"label\"}, ${3:col_rgb}, ${4:flagsIn})"},
{"trigger": "ImGui_ColorPicker4", "contents": "ImGui_ColorPicker4(${1:ctx}, ${2:\"label\"}, ${3:col_rgba}, ${4:flagsIn}, ${5:ref_colIn})"},
{"trigger": "ImGui_Combo", "contents": "ImGui_Combo(${1:ctx}, ${2:\"label\"}, ${3:current_item}, ${4:#items}, ${5:popup_max_height_in_itemsIn})"},
{"trigger": "ImGui_ComboFlags_HeightLarge", "contents": "ImGui_ComboFlags_HeightLarge()"},
{"trigger": "ImGui_ComboFlags_HeightLargest", "contents": "ImGui_ComboFlags_HeightLargest()"},
{"trigger": "ImGui_ComboFlags_HeightRegular", "contents": "ImGui_ComboFlags_HeightRegular()"},
{"trigger": "ImGui_ComboFlags_HeightSmall", "contents": "ImGui_ComboFlags_HeightSmall()"},
{"trigger": "ImGui_ComboFlags_NoArrowButton", "contents": "ImGui_ComboFlags_NoArrowButton()"},
{"trigger": "ImGui_ComboFlags_None", "contents": "ImGui_ComboFlags_None()"},
{"trigger": "ImGui_ComboFlags_NoPreview", "contents": "ImGui_ComboFlags_NoPreview()"},
{"trigger": "ImGui_ComboFlags_PopupAlignLeft", "contents": "ImGui_ComboFlags_PopupAlignLeft()"},
{"trigger": "ImGui_Cond_Always", "contents": "ImGui_Cond_Always()"},
{"trigger": "ImGui_Cond_Appearing", "contents": "ImGui_Cond_Appearing()"},
{"trigger": "ImGui_Cond_FirstUseEver", "contents": "ImGui_Cond_FirstUseEver()"},
{"trigger": "ImGui_Cond_Once", "contents": "ImGui_Cond_Once()"},
{"trigger": "ImGui_ConfigFlags_DockingEnable", "contents": "ImGui_ConfigFlags_DockingEnable()"},
{"trigger": "ImGui_ConfigFlags_NavEnableKeyboard", "contents": "ImGui_ConfigFlags_NavEnableKeyboard()"},
{"trigger": "ImGui_ConfigFlags_NavEnableSetMousePos", "contents": "ImGui_ConfigFlags_NavEnableSetMousePos()"},
{"trigger": "ImGui_ConfigFlags_NoMouse", "contents": "ImGui_ConfigFlags_NoMouse()"},
{"trigger": "ImGui_ConfigFlags_NoMouseCursorChange", "contents": "ImGui_ConfigFlags_NoMouseCursorChange()"},
{"trigger": "ImGui_ConfigFlags_None", "contents": "ImGui_ConfigFlags_None()"},
{"trigger": "ImGui_ConfigFlags_NoSavedSettings", "contents": "ImGui_ConfigFlags_NoSavedSettings()"},
{"trigger": "ImGui_CreateContext", "contents": "ImGui_CreateContext(${1:\"label\"}, ${2:config_flagsIn})"},
{"trigger": "ImGui_CreateFont", "contents": "ImGui_CreateFont(${1:\"family_or_file\"}, ${2:size}, ${3:flagsIn})"},
{"trigger": "ImGui_CreateListClipper", "contents": "ImGui_CreateListClipper(${1:ctx})"},
{"trigger": "ImGui_CreateTextFilter", "contents": "ImGui_CreateTextFilter(${1:\"default_filterIn\"})"},
{"trigger": "ImGui_DestroyContext", "contents": "ImGui_DestroyContext(${1:ctx})"},
{"trigger": "ImGui_DetachFont", "contents": "ImGui_DetachFont(${1:ctx}, ${2:font})"},
{"trigger": "ImGui_Dir_Down", "contents": "ImGui_Dir_Down()"},
{"trigger": "ImGui_Dir_Left", "contents": "ImGui_Dir_Left()"},
{"trigger": "ImGui_Dir_None", "contents": "ImGui_Dir_None()"},
{"trigger": "ImGui_Dir_Right", "contents": "ImGui_Dir_Right()"},
{"trigger": "ImGui_Dir_Up", "contents": "ImGui_Dir_Up()"},
{"trigger": "ImGui_DragDouble", "contents": "ImGui_DragDouble(${1:ctx}, ${2:\"label\"}, ${3:v}, ${4:v_speedIn}, ${5:v_minIn}, ${6:v_maxIn}, ${7:\"formatIn\"}, ${8:flagsIn})"},
{"trigger": "ImGui_DragDouble2", "contents": "ImGui_DragDouble2(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v_speedIn}, ${6:v_minIn}, ${7:v_maxIn}, ${8:\"formatIn\"}, ${9:flagsIn})"},
{"trigger": "ImGui_DragDouble3", "contents": "ImGui_DragDouble3(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:v_speedIn}, ${7:v_minIn}, ${8:v_maxIn}, ${9:\"formatIn\"}, ${10:flagsIn})"},
{"trigger": "ImGui_DragDouble4", "contents": "ImGui_DragDouble4(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:v4}, ${7:v_speedIn}, ${8:v_minIn}, ${9:v_maxIn}, ${10:\"formatIn\"}, ${11:flagsIn})"},
{"trigger": "ImGui_DragDoubleN", "contents": "ImGui_DragDoubleN(${1:ctx}, ${2:\"label\"}, ${3:values}, ${4:speedIn}, ${5:minIn}, ${6:maxIn}, ${7:\"formatIn\"}, ${8:flagsIn})"},
{"trigger": "ImGui_DragDropFlags_AcceptBeforeDelivery", "contents": "ImGui_DragDropFlags_AcceptBeforeDelivery()"},
{"trigger": "ImGui_DragDropFlags_AcceptNoDrawDefaultRect", "contents": "ImGui_DragDropFlags_AcceptNoDrawDefaultRect()"},
{"trigger": "ImGui_DragDropFlags_AcceptNoPreviewTooltip", "contents": "ImGui_DragDropFlags_AcceptNoPreviewTooltip()"},
{"trigger": "ImGui_DragDropFlags_AcceptPeekOnly", "contents": "ImGui_DragDropFlags_AcceptPeekOnly()"},
{"trigger": "ImGui_DragDropFlags_None", "contents": "ImGui_DragDropFlags_None()"},
{"trigger": "ImGui_DragDropFlags_SourceAllowNullID", "contents": "ImGui_DragDropFlags_SourceAllowNullID()"},
{"trigger": "ImGui_DragDropFlags_SourceAutoExpirePayload", "contents": "ImGui_DragDropFlags_SourceAutoExpirePayload()"},
{"trigger": "ImGui_DragDropFlags_SourceExtern", "contents": "ImGui_DragDropFlags_SourceExtern()"},
{"trigger": "ImGui_DragDropFlags_SourceNoDisableHover", "contents": "ImGui_DragDropFlags_SourceNoDisableHover()"},
{"trigger": "ImGui_DragDropFlags_SourceNoHoldToOpenOthers", "contents": "ImGui_DragDropFlags_SourceNoHoldToOpenOthers()"},
{"trigger": "ImGui_DragDropFlags_SourceNoPreviewTooltip", "contents": "ImGui_DragDropFlags_SourceNoPreviewTooltip()"},
{"trigger": "ImGui_DragFloatRange2", "contents": "ImGui_DragFloatRange2(${1:ctx}, ${2:\"label\"}, ${3:v_current_min}, ${4:v_current_max}, ${5:v_speedIn}, ${6:v_minIn}, ${7:v_maxIn}, ${8:\"formatIn\"}, ${9:\"format_maxIn\"}, ${10:flagsIn})"},
{"trigger": "ImGui_DragInt", "contents": "ImGui_DragInt(${1:ctx}, ${2:\"label\"}, ${3:v}, ${4:v_speedIn}, ${5:v_minIn}, ${6:v_maxIn}, ${7:\"formatIn\"}, ${8:flagsIn})"},
{"trigger": "ImGui_DragInt2", "contents": "ImGui_DragInt2(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v_speedIn}, ${6:v_minIn}, ${7:v_maxIn}, ${8:\"formatIn\"}, ${9:flagsIn})"},
{"trigger": "ImGui_DragInt3", "contents": "ImGui_DragInt3(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:v_speedIn}, ${7:v_minIn}, ${8:v_maxIn}, ${9:\"formatIn\"}, ${10:flagsIn})"},
{"trigger": "ImGui_DragInt4", "contents": "ImGui_DragInt4(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:v4}, ${7:v_speedIn}, ${8:v_minIn}, ${9:v_maxIn}, ${10:\"formatIn\"}, ${11:flagsIn})"},
{"trigger": "ImGui_DragIntRange2", "contents": "ImGui_DragIntRange2(${1:ctx}, ${2:\"label\"}, ${3:v_current_min}, ${4:v_current_max}, ${5:v_speedIn}, ${6:v_minIn}, ${7:v_maxIn}, ${8:\"formatIn\"}, ${9:\"format_maxIn\"}, ${10:flagsIn})"},
{"trigger": "ImGui_DrawFlags_Closed", "contents": "ImGui_DrawFlags_Closed()"},
{"trigger": "ImGui_DrawFlags_None", "contents": "ImGui_DrawFlags_None()"},
{"trigger": "ImGui_DrawFlags_RoundCornersAll", "contents": "ImGui_DrawFlags_RoundCornersAll()"},
{"trigger": "ImGui_DrawFlags_RoundCornersBottom", "contents": "ImGui_DrawFlags_RoundCornersBottom()"},
{"trigger": "ImGui_DrawFlags_RoundCornersBottomLeft", "contents": "ImGui_DrawFlags_RoundCornersBottomLeft()"},
{"trigger": "ImGui_DrawFlags_RoundCornersBottomRight", "contents": "ImGui_DrawFlags_RoundCornersBottomRight()"},
{"trigger": "ImGui_DrawFlags_RoundCornersLeft", "contents": "ImGui_DrawFlags_RoundCornersLeft()"},
{"trigger": "ImGui_DrawFlags_RoundCornersNone", "contents": "ImGui_DrawFlags_RoundCornersNone()"},
{"trigger": "ImGui_DrawFlags_RoundCornersRight", "contents": "ImGui_DrawFlags_RoundCornersRight()"},
{"trigger": "ImGui_DrawFlags_RoundCornersTop", "contents": "ImGui_DrawFlags_RoundCornersTop()"},
{"trigger": "ImGui_DrawFlags_RoundCornersTopLeft", "contents": "ImGui_DrawFlags_RoundCornersTopLeft()"},
{"trigger": "ImGui_DrawFlags_RoundCornersTopRight", "contents": "ImGui_DrawFlags_RoundCornersTopRight()"},
{"trigger": "ImGui_DrawList_AddBezierCubic", "contents": "ImGui_DrawList_AddBezierCubic(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:p3_x}, ${7:p3_y}, ${8:p4_x}, ${9:p4_y}, ${10:col_rgba}, ${11:thickness}, ${12:num_segmentsIn})"},
{"trigger": "ImGui_DrawList_AddBezierQuadratic", "contents": "ImGui_DrawList_AddBezierQuadratic(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:p3_x}, ${7:p3_y}, ${8:col_rgba}, ${9:thickness}, ${10:num_segmentsIn})"},
{"trigger": "ImGui_DrawList_AddCircle", "contents": "ImGui_DrawList_AddCircle(${1:draw_list}, ${2:center_x}, ${3:center_y}, ${4:radius}, ${5:col_rgba}, ${6:num_segmentsIn}, ${7:thicknessIn})"},
{"trigger": "ImGui_DrawList_AddCircleFilled", "contents": "ImGui_DrawList_AddCircleFilled(${1:draw_list}, ${2:center_x}, ${3:center_y}, ${4:radius}, ${5:col_rgba}, ${6:num_segmentsIn})"},
{"trigger": "ImGui_DrawList_AddConvexPolyFilled", "contents": "ImGui_DrawList_AddConvexPolyFilled(${1:draw_list}, ${2:points}, ${3:col_rgba})"},
{"trigger": "ImGui_DrawList_AddLine", "contents": "ImGui_DrawList_AddLine(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:col_rgba}, ${7:thicknessIn})"},
{"trigger": "ImGui_DrawList_AddNgon", "contents": "ImGui_DrawList_AddNgon(${1:draw_list}, ${2:center_x}, ${3:center_y}, ${4:radius}, ${5:col_rgba}, ${6:num_segments}, ${7:thicknessIn})"},
{"trigger": "ImGui_DrawList_AddNgonFilled", "contents": "ImGui_DrawList_AddNgonFilled(${1:draw_list}, ${2:center_x}, ${3:center_y}, ${4:radius}, ${5:col_rgba}, ${6:num_segments})"},
{"trigger": "ImGui_DrawList_AddPolyline", "contents": "ImGui_DrawList_AddPolyline(${1:draw_list}, ${2:points}, ${3:col_rgba}, ${4:flags}, ${5:thickness})"},
{"trigger": "ImGui_DrawList_AddQuad", "contents": "ImGui_DrawList_AddQuad(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:p3_x}, ${7:p3_y}, ${8:p4_x}, ${9:p4_y}, ${10:col_rgba}, ${11:thicknessIn})"},
{"trigger": "ImGui_DrawList_AddQuadFilled", "contents": "ImGui_DrawList_AddQuadFilled(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:p3_x}, ${7:p3_y}, ${8:p4_x}, ${9:p4_y}, ${10:col_rgba})"},
{"trigger": "ImGui_DrawList_AddRect", "contents": "ImGui_DrawList_AddRect(${1:draw_list}, ${2:p_min_x}, ${3:p_min_y}, ${4:p_max_x}, ${5:p_max_y}, ${6:col_rgba}, ${7:roundingIn}, ${8:flagsIn}, ${9:thicknessIn})"},
{"trigger": "ImGui_DrawList_AddRectFilled", "contents": "ImGui_DrawList_AddRectFilled(${1:draw_list}, ${2:p_min_x}, ${3:p_min_y}, ${4:p_max_x}, ${5:p_max_y}, ${6:col_rgba}, ${7:roundingIn}, ${8:flagsIn})"},
{"trigger": "ImGui_DrawList_AddRectFilledMultiColor", "contents": "ImGui_DrawList_AddRectFilledMultiColor(${1:draw_list}, ${2:p_min_x}, ${3:p_min_y}, ${4:p_max_x}, ${5:p_max_y}, ${6:col_upr_left}, ${7:col_upr_right}, ${8:col_bot_right}, ${9:col_bot_left})"},
{"trigger": "ImGui_DrawList_AddText", "contents": "ImGui_DrawList_AddText(${1:draw_list}, ${2:x}, ${3:y}, ${4:col_rgba}, ${5:\"text\"})"},
{"trigger": "ImGui_DrawList_AddTextEx", "contents": "ImGui_DrawList_AddTextEx(${1:draw_list}, ${2:font}, ${3:font_size}, ${4:pos_x}, ${5:pos_y}, ${6:col_rgba}, ${7:\"text\"}, ${8:wrap_widthIn}, ${9:cpu_fine_clip_rect_xIn}, ${10:cpu_fine_clip_rect_yIn}, ${11:cpu_fine_clip_rect_wIn}, ${12:cpu_fine_clip_rect_hIn})"},
{"trigger": "ImGui_DrawList_AddTriangle", "contents": "ImGui_DrawList_AddTriangle(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:p3_x}, ${7:p3_y}, ${8:col_rgba}, ${9:thicknessIn})"},
{"trigger": "ImGui_DrawList_AddTriangleFilled", "contents": "ImGui_DrawList_AddTriangleFilled(${1:draw_list}, ${2:p1_x}, ${3:p1_y}, ${4:p2_x}, ${5:p2_y}, ${6:p3_x}, ${7:p3_y}, ${8:col_rgba})"},
{"trigger": "ImGui_DrawList_PathArcTo", "contents": "ImGui_DrawList_PathArcTo(${1:draw_list}, ${2:center_x}, ${3:center_y}, ${4:radius}, ${5:a_min}, ${6:a_max}, ${7:num_segmentsIn})"},
{"trigger": "ImGui_DrawList_PathArcToFast", "contents": "ImGui_DrawList_PathArcToFast(${1:draw_list}, ${2:center_x}, ${3:center_y}, ${4:radius}, ${5:a_min_of_12}, ${6:a_max_of_12})"},
{"trigger": "ImGui_DrawList_PathBezierCubicCurveTo", "contents": "ImGui_DrawList_PathBezierCubicCurveTo(${1:draw_list}, ${2:p2_x}, ${3:p2_y}, ${4:p3_x}, ${5:p3_y}, ${6:p4_x}, ${7:p4_y}, ${8:num_segmentsIn})"},
{"trigger": "ImGui_DrawList_PathBezierQuadraticCurveTo", "contents": "ImGui_DrawList_PathBezierQuadraticCurveTo(${1:draw_list}, ${2:p2_x}, ${3:p2_y}, ${4:p3_x}, ${5:p3_y}, ${6:num_segmentsIn})"},
{"trigger": "ImGui_DrawList_PathClear", "contents": "ImGui_DrawList_PathClear(${1:draw_list})"},
{"trigger": "ImGui_DrawList_PathFillConvex", "contents": "ImGui_DrawList_PathFillConvex(${1:draw_list}, ${2:col_rgba})"},
{"trigger": "ImGui_DrawList_PathLineTo", "contents": "ImGui_DrawList_PathLineTo(${1:draw_list}, ${2:pos_x}, ${3:pos_y})"},
{"trigger": "ImGui_DrawList_PathRect", "contents": "ImGui_DrawList_PathRect(${1:draw_list}, ${2:rect_min_x}, ${3:rect_min_y}, ${4:rect_max_x}, ${5:rect_max_y}, ${6:roundingIn}, ${7:flagsIn})"},
{"trigger": "ImGui_DrawList_PathStroke", "contents": "ImGui_DrawList_PathStroke(${1:draw_list}, ${2:col_rgba}, ${3:flagsIn}, ${4:thicknessIn})"},
{"trigger": "ImGui_DrawList_PopClipRect", "contents": "ImGui_DrawList_PopClipRect(${1:draw_list})"},
{"trigger": "ImGui_DrawList_PushClipRect", "contents": "ImGui_DrawList_PushClipRect(${1:draw_list}, ${2:clip_rect_min_x}, ${3:clip_rect_min_y}, ${4:clip_rect_max_x}, ${5:clip_rect_max_y}, ${6:intersect_with_current_clip_rectIn})"},
{"trigger": "ImGui_DrawList_PushClipRectFullScreen", "contents": "ImGui_DrawList_PushClipRectFullScreen(${1:draw_list})"},
{"trigger": "ImGui_Dummy", "contents": "ImGui_Dummy(${1:ctx}, ${2:size_w}, ${3:size_h})"},
{"trigger": "ImGui_End", "contents": "ImGui_End(${1:ctx})"},
{"trigger": "ImGui_EndChild", "contents": "ImGui_EndChild(${1:ctx})"},
{"trigger": "ImGui_EndChildFrame", "contents": "ImGui_EndChildFrame(${1:ctx})"},
{"trigger": "ImGui_EndCombo", "contents": "ImGui_EndCombo(${1:ctx})"},
{"trigger": "ImGui_EndDisabled", "contents": "ImGui_EndDisabled(${1:ctx})"},
{"trigger": "ImGui_EndDragDropSource", "contents": "ImGui_EndDragDropSource(${1:ctx})"},
{"trigger": "ImGui_EndDragDropTarget", "contents": "ImGui_EndDragDropTarget(${1:ctx})"},
{"trigger": "ImGui_EndGroup", "contents": "ImGui_EndGroup(${1:ctx})"},
{"trigger": "ImGui_EndListBox", "contents": "ImGui_EndListBox(${1:ctx})"},
{"trigger": "ImGui_EndMenu", "contents": "ImGui_EndMenu(${1:ctx})"},
{"trigger": "ImGui_EndMenuBar", "contents": "ImGui_EndMenuBar(${1:ctx})"},
{"trigger": "ImGui_EndPopup", "contents": "ImGui_EndPopup(${1:ctx})"},
{"trigger": "ImGui_EndTabBar", "contents": "ImGui_EndTabBar(${1:ctx})"},
{"trigger": "ImGui_EndTabItem", "contents": "ImGui_EndTabItem(${1:ctx})"},
{"trigger": "ImGui_EndTable", "contents": "ImGui_EndTable(${1:ctx})"},
{"trigger": "ImGui_EndTooltip", "contents": "ImGui_EndTooltip(${1:ctx})"},
{"trigger": "ImGui_FocusedFlags_AnyWindow", "contents": "ImGui_FocusedFlags_AnyWindow()"},
{"trigger": "ImGui_FocusedFlags_ChildWindows", "contents": "ImGui_FocusedFlags_ChildWindows()"},
{"trigger": "ImGui_FocusedFlags_DockHierarchy", "contents": "ImGui_FocusedFlags_DockHierarchy()"},
{"trigger": "ImGui_FocusedFlags_None", "contents": "ImGui_FocusedFlags_None()"},
{"trigger": "ImGui_FocusedFlags_NoPopupHierarchy", "contents": "ImGui_FocusedFlags_NoPopupHierarchy()"},
{"trigger": "ImGui_FocusedFlags_RootAndChildWindows", "contents": "ImGui_FocusedFlags_RootAndChildWindows()"},
{"trigger": "ImGui_FocusedFlags_RootWindow", "contents": "ImGui_FocusedFlags_RootWindow()"},
{"trigger": "ImGui_FontFlags_Bold", "contents": "ImGui_FontFlags_Bold()"},
{"trigger": "ImGui_FontFlags_Italic", "contents": "ImGui_FontFlags_Italic()"},
{"trigger": "ImGui_FontFlags_None", "contents": "ImGui_FontFlags_None()"},
{"trigger": "ImGui_GetBackgroundDrawList", "contents": "ImGui_GetBackgroundDrawList(${1:ctx})"},
{"trigger": "ImGui_GetClipboardText", "contents": "ImGui_GetClipboardText(${1:#retval}, ${2:ctx})"},
{"trigger": "ImGui_GetColor", "contents": "ImGui_GetColor(${1:ctx}, ${2:idx}, ${3:alpha_mulIn})"},
{"trigger": "ImGui_GetColorEx", "contents": "ImGui_GetColorEx(${1:ctx}, ${2:col_rgba})"},
{"trigger": "ImGui_GetConfigFlags", "contents": "ImGui_GetConfigFlags(${1:ctx})"},
{"trigger": "ImGui_GetContentRegionAvail", "contents": "ImGui_GetContentRegionAvail(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetContentRegionMax", "contents": "ImGui_GetContentRegionMax(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetCursorPos", "contents": "ImGui_GetCursorPos(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetCursorPosX", "contents": "ImGui_GetCursorPosX(${1:ctx})"},
{"trigger": "ImGui_GetCursorPosY", "contents": "ImGui_GetCursorPosY(${1:ctx})"},
{"trigger": "ImGui_GetCursorScreenPos", "contents": "ImGui_GetCursorScreenPos(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetCursorStartPos", "contents": "ImGui_GetCursorStartPos(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetDeltaTime", "contents": "ImGui_GetDeltaTime(${1:ctx})"},
{"trigger": "ImGui_GetDragDropPayload", "contents": "ImGui_GetDragDropPayload(${1:ctx}, ${2:#type}, ${3:#payload}, ${4:is_preview}, ${5:is_delivery})"},
{"trigger": "ImGui_GetDragDropPayloadFile", "contents": "ImGui_GetDragDropPayloadFile(${1:ctx}, ${2:index}, ${3:#filename})"},
{"trigger": "ImGui_GetFont", "contents": "ImGui_GetFont(${1:ctx})"},
{"trigger": "ImGui_GetFontSize", "contents": "ImGui_GetFontSize(${1:ctx})"},
{"trigger": "ImGui_GetForegroundDrawList", "contents": "ImGui_GetForegroundDrawList(${1:ctx})"},
{"trigger": "ImGui_GetFrameCount", "contents": "ImGui_GetFrameCount(${1:ctx})"},
{"trigger": "ImGui_GetFrameHeight", "contents": "ImGui_GetFrameHeight(${1:ctx})"},
{"trigger": "ImGui_GetFrameHeightWithSpacing", "contents": "ImGui_GetFrameHeightWithSpacing(${1:ctx})"},
{"trigger": "ImGui_GetInputQueueCharacter", "contents": "ImGui_GetInputQueueCharacter(${1:ctx}, ${2:idx}, ${3:unicode_char})"},
{"trigger": "ImGui_GetItemRectMax", "contents": "ImGui_GetItemRectMax(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetItemRectMin", "contents": "ImGui_GetItemRectMin(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetItemRectSize", "contents": "ImGui_GetItemRectSize(${1:ctx}, ${2:w}, ${3:h})"},
{"trigger": "ImGui_GetKeyDownDuration", "contents": "ImGui_GetKeyDownDuration(${1:ctx}, ${2:key})"},
{"trigger": "ImGui_GetKeyMods", "contents": "ImGui_GetKeyMods(${1:ctx})"},
{"trigger": "ImGui_GetKeyPressedAmount", "contents": "ImGui_GetKeyPressedAmount(${1:ctx}, ${2:key}, ${3:repeat_delay}, ${4:rate})"},
{"trigger": "ImGui_GetMainViewport", "contents": "ImGui_GetMainViewport(${1:ctx})"},
{"trigger": "ImGui_GetMouseClickedCount", "contents": "ImGui_GetMouseClickedCount(${1:ctx}, ${2:button})"},
{"trigger": "ImGui_GetMouseClickedPos", "contents": "ImGui_GetMouseClickedPos(${1:ctx}, ${2:button}, ${3:x}, ${4:y})"},
{"trigger": "ImGui_GetMouseCursor", "contents": "ImGui_GetMouseCursor(${1:ctx})"},
{"trigger": "ImGui_GetMouseDelta", "contents": "ImGui_GetMouseDelta(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetMouseDownDuration", "contents": "ImGui_GetMouseDownDuration(${1:ctx}, ${2:button})"},
{"trigger": "ImGui_GetMouseDragDelta", "contents": "ImGui_GetMouseDragDelta(${1:ctx}, ${2:x}, ${3:y}, ${4:buttonIn}, ${5:lock_thresholdIn})"},
{"trigger": "ImGui_GetMousePos", "contents": "ImGui_GetMousePos(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetMousePosOnOpeningCurrentPopup", "contents": "ImGui_GetMousePosOnOpeningCurrentPopup(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetMouseWheel", "contents": "ImGui_GetMouseWheel(${1:ctx}, ${2:vertical}, ${3:horizontal})"},
{"trigger": "ImGui_GetScrollMaxX", "contents": "ImGui_GetScrollMaxX(${1:ctx})"},
{"trigger": "ImGui_GetScrollMaxY", "contents": "ImGui_GetScrollMaxY(${1:ctx})"},
{"trigger": "ImGui_GetScrollX", "contents": "ImGui_GetScrollX(${1:ctx})"},
{"trigger": "ImGui_GetScrollY", "contents": "ImGui_GetScrollY(${1:ctx})"},
{"trigger": "ImGui_GetStyleColor", "contents": "ImGui_GetStyleColor(${1:ctx}, ${2:idx})"},
{"trigger": "ImGui_GetStyleVar", "contents": "ImGui_GetStyleVar(${1:ctx}, ${2:var_idx}, ${3:val1}, ${4:val2})"},
{"trigger": "ImGui_GetTextLineHeight", "contents": "ImGui_GetTextLineHeight(${1:ctx})"},
{"trigger": "ImGui_GetTextLineHeightWithSpacing", "contents": "ImGui_GetTextLineHeightWithSpacing(${1:ctx})"},
{"trigger": "ImGui_GetTime", "contents": "ImGui_GetTime(${1:ctx})"},
{"trigger": "ImGui_GetTreeNodeToLabelSpacing", "contents": "ImGui_GetTreeNodeToLabelSpacing(${1:ctx})"},
{"trigger": "ImGui_GetVersion", "contents": "ImGui_GetVersion(${1:#imgui_version}, ${2:#reaimgui_version})"},
{"trigger": "ImGui_GetWindowContentRegionMax", "contents": "ImGui_GetWindowContentRegionMax(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetWindowContentRegionMin", "contents": "ImGui_GetWindowContentRegionMin(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetWindowDockID", "contents": "ImGui_GetWindowDockID(${1:ctx})"},
{"trigger": "ImGui_GetWindowDrawList", "contents": "ImGui_GetWindowDrawList(${1:ctx})"},
{"trigger": "ImGui_GetWindowHeight", "contents": "ImGui_GetWindowHeight(${1:ctx})"},
{"trigger": "ImGui_GetWindowPos", "contents": "ImGui_GetWindowPos(${1:ctx}, ${2:x}, ${3:y})"},
{"trigger": "ImGui_GetWindowSize", "contents": "ImGui_GetWindowSize(${1:ctx}, ${2:w}, ${3:h})"},
{"trigger": "ImGui_GetWindowWidth", "contents": "ImGui_GetWindowWidth(${1:ctx})"},
{"trigger": "ImGui_HoveredFlags_AllowWhenBlockedByActiveItem", "contents": "ImGui_HoveredFlags_AllowWhenBlockedByActiveItem()"},
{"trigger": "ImGui_HoveredFlags_AllowWhenBlockedByPopup", "contents": "ImGui_HoveredFlags_AllowWhenBlockedByPopup()"},
{"trigger": "ImGui_HoveredFlags_AllowWhenDisabled", "contents": "ImGui_HoveredFlags_AllowWhenDisabled()"},
{"trigger": "ImGui_HoveredFlags_AllowWhenOverlapped", "contents": "ImGui_HoveredFlags_AllowWhenOverlapped()"},
{"trigger": "ImGui_HoveredFlags_AnyWindow", "contents": "ImGui_HoveredFlags_AnyWindow()"},
{"trigger": "ImGui_HoveredFlags_ChildWindows", "contents": "ImGui_HoveredFlags_ChildWindows()"},
{"trigger": "ImGui_HoveredFlags_DockHierarchy", "contents": "ImGui_HoveredFlags_DockHierarchy()"},
{"trigger": "ImGui_HoveredFlags_None", "contents": "ImGui_HoveredFlags_None()"},
{"trigger": "ImGui_HoveredFlags_NoPopupHierarchy", "contents": "ImGui_HoveredFlags_NoPopupHierarchy()"},
{"trigger": "ImGui_HoveredFlags_RectOnly", "contents": "ImGui_HoveredFlags_RectOnly()"},
{"trigger": "ImGui_HoveredFlags_RootAndChildWindows", "contents": "ImGui_HoveredFlags_RootAndChildWindows()"},
{"trigger": "ImGui_HoveredFlags_RootWindow", "contents": "ImGui_HoveredFlags_RootWindow()"},
{"trigger": "ImGui_Indent", "contents": "ImGui_Indent(${1:ctx}, ${2:indent_wIn})"},
{"trigger": "ImGui_InputDouble", "contents": "ImGui_InputDouble(${1:ctx}, ${2:\"label\"}, ${3:v}, ${4:stepIn}, ${5:step_fastIn}, ${6:\"formatIn\"}, ${7:flagsIn})"},
{"trigger": "ImGui_InputDouble2", "contents": "ImGui_InputDouble2(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:\"formatIn\"}, ${6:flagsIn})"},
{"trigger": "ImGui_InputDouble3", "contents": "ImGui_InputDouble3(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:\"formatIn\"}, ${7:flagsIn})"},
{"trigger": "ImGui_InputDouble4", "contents": "ImGui_InputDouble4(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:v4}, ${7:\"formatIn\"}, ${8:flagsIn})"},
{"trigger": "ImGui_InputDoubleN", "contents": "ImGui_InputDoubleN(${1:ctx}, ${2:\"label\"}, ${3:values}, ${4:stepIn}, ${5:step_fastIn}, ${6:\"formatIn\"}, ${7:flagsIn})"},
{"trigger": "ImGui_InputInt", "contents": "ImGui_InputInt(${1:ctx}, ${2:\"label\"}, ${3:v}, ${4:stepIn}, ${5:step_fastIn}, ${6:flagsIn})"},
{"trigger": "ImGui_InputInt2", "contents": "ImGui_InputInt2(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:flagsIn})"},
{"trigger": "ImGui_InputInt3", "contents": "ImGui_InputInt3(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:flagsIn})"},
{"trigger": "ImGui_InputInt4", "contents": "ImGui_InputInt4(${1:ctx}, ${2:\"label\"}, ${3:v1}, ${4:v2}, ${5:v3}, ${6:v4}, ${7:flagsIn})"},
{"trigger": "ImGui_InputText", "contents": "ImGui_InputText(${1:ctx}, ${2:\"label\"}, ${3:#buf}, ${4:flagsIn})"},
{"trigger": "ImGui_InputTextFlags_AllowTabInput", "contents": "ImGui_InputTextFlags_AllowTabInput()"},
{"trigger": "ImGui_InputTextFlags_AlwaysOverwrite", "contents": "ImGui_InputTextFlags_AlwaysOverwrite()"},
{"trigger": "ImGui_InputTextFlags_AutoSelectAll", "contents": "ImGui_InputTextFlags_AutoSelectAll()"},
{"trigger": "ImGui_InputTextFlags_CharsDecimal", "contents": "ImGui_InputTextFlags_CharsDecimal()"},
{"trigger": "ImGui_InputTextFlags_CharsHexadecimal", "contents": "ImGui_InputTextFlags_CharsHexadecimal()"},
{"trigger": "ImGui_InputTextFlags_CharsNoBlank", "contents": "ImGui_InputTextFlags_CharsNoBlank()"},
{"trigger": "ImGui_InputTextFlags_CharsScientific", "contents": "ImGui_InputTextFlags_CharsScientific()"},
{"trigger": "ImGui_InputTextFlags_CharsUppercase", "contents": "ImGui_InputTextFlags_CharsUppercase()"},
{"trigger": "ImGui_InputTextFlags_CtrlEnterForNewLine", "contents": "ImGui_InputTextFlags_CtrlEnterForNewLine()"},
{"trigger": "ImGui_InputTextFlags_EnterReturnsTrue", "contents": "ImGui_InputTextFlags_EnterReturnsTrue()"},
{"trigger": "ImGui_InputTextFlags_NoHorizontalScroll", "contents": "ImGui_InputTextFlags_NoHorizontalScroll()"},
{"trigger": "ImGui_InputTextFlags_None", "contents": "ImGui_InputTextFlags_None()"},
{"trigger": "ImGui_InputTextFlags_NoUndoRedo", "contents": "ImGui_InputTextFlags_NoUndoRedo()"},
{"trigger": "ImGui_InputTextFlags_Password", "contents": "ImGui_InputTextFlags_Password()"},
{"trigger": "ImGui_InputTextFlags_ReadOnly", "contents": "ImGui_InputTextFlags_ReadOnly()"},
{"trigger": "ImGui_InputTextMultiline", "contents": "ImGui_InputTextMultiline(${1:ctx}, ${2:\"label\"}, ${3:#buf}, ${4:size_wIn}, ${5:size_hIn}, ${6:flagsIn})"},
{"trigger": "ImGui_InputTextWithHint", "contents": "ImGui_InputTextWithHint(${1:ctx}, ${2:\"label\"}, ${3:\"hint\"}, ${4:#buf}, ${5:flagsIn})"},
{"trigger": "ImGui_InvisibleButton", "contents": "ImGui_InvisibleButton(${1:ctx}, ${2:\"str_id\"}, ${3:size_w}, ${4:size_h}, ${5:flagsIn})"},
{"trigger": "ImGui_IsAnyItemActive", "contents": "ImGui_IsAnyItemActive(${1:ctx})"},
{"trigger": "ImGui_IsAnyItemFocused", "contents": "ImGui_IsAnyItemFocused(${1:ctx})"},
{"trigger": "ImGui_IsAnyItemHovered", "contents": "ImGui_IsAnyItemHovered(${1:ctx})"},
{"trigger": "ImGui_IsAnyMouseDown", "contents": "ImGui_IsAnyMouseDown(${1:ctx})"},
{"trigger": "ImGui_IsItemActivated", "contents": "ImGui_IsItemActivated(${1:ctx})"},
{"trigger": "ImGui_IsItemActive", "contents": "ImGui_IsItemActive(${1:ctx})"},
{"trigger": "ImGui_IsItemClicked", "contents": "ImGui_IsItemClicked(${1:ctx}, ${2:mouse_buttonIn})"},
{"trigger": "ImGui_IsItemDeactivated", "contents": "ImGui_IsItemDeactivated(${1:ctx})"},
{"trigger": "ImGui_IsItemDeactivatedAfterEdit", "contents": "ImGui_IsItemDeactivatedAfterEdit(${1:ctx})"},
{"trigger": "ImGui_IsItemEdited", "contents": "ImGui_IsItemEdited(${1:ctx})"},
{"trigger": "ImGui_IsItemFocused", "contents": "ImGui_IsItemFocused(${1:ctx})"},
{"trigger": "ImGui_IsItemHovered", "contents": "ImGui_IsItemHovered(${1:ctx}, ${2:flagsIn})"},
{"trigger": "ImGui_IsItemToggledOpen", "contents": "ImGui_IsItemToggledOpen(${1:ctx})"},
{"trigger": "ImGui_IsItemVisible", "contents": "ImGui_IsItemVisible(${1:ctx})"},
{"trigger": "ImGui_IsKeyDown", "contents": "ImGui_IsKeyDown(${1:ctx}, ${2:key})"},
{"trigger": "ImGui_IsKeyPressed", "contents": "ImGui_IsKeyPressed(${1:ctx}, ${2:key}, ${3:repeatIn})"},
{"trigger": "ImGui_IsKeyReleased", "contents": "ImGui_IsKeyReleased(${1:ctx}, ${2:key})"},
{"trigger": "ImGui_IsMouseClicked", "contents": "ImGui_IsMouseClicked(${1:ctx}, ${2:button}, ${3:repeatIn})"},
{"trigger": "ImGui_IsMouseDoubleClicked", "contents": "ImGui_IsMouseDoubleClicked(${1:ctx}, ${2:button})"},
{"trigger": "ImGui_IsMouseDown", "contents": "ImGui_IsMouseDown(${1:ctx}, ${2:button})"},
{"trigger": "ImGui_IsMouseDragging", "contents": "ImGui_IsMouseDragging(${1:ctx}, ${2:button}, ${3:lock_thresholdIn})"},
{"trigger": "ImGui_IsMouseHoveringRect", "contents": "ImGui_IsMouseHoveringRect(${1:ctx}, ${2:r_min_x}, ${3:r_min_y}, ${4:r_max_x}, ${5:r_max_y}, ${6:clipIn})"},
{"trigger": "ImGui_IsMousePosValid", "contents": "ImGui_IsMousePosValid(${1:ctx}, ${2:mouse_pos_xIn}, ${3:mouse_pos_yIn})"},
{"trigger": "ImGui_IsMouseReleased", "contents": "ImGui_IsMouseReleased(${1:ctx}, ${2:button})"},
{"trigger": "ImGui_IsPopupOpen", "contents": "ImGui_IsPopupOpen(${1:ctx}, ${2:\"str_id\"}, ${3:flagsIn})"},
{"trigger": "ImGui_IsRectVisible", "contents": "ImGui_IsRectVisible(${1:ctx}, ${2:size_w}, ${3:size_h})"},
{"trigger": "ImGui_IsRectVisibleEx", "contents": "ImGui_IsRectVisibleEx(${1:ctx}, ${2:rect_min_x}, ${3:rect_min_y}, ${4:rect_max_x}, ${5:rect_max_y})"},
{"trigger": "ImGui_IsWindowAppearing", "contents": "ImGui_IsWindowAppearing(${1:ctx})"},
{"trigger": "ImGui_IsWindowCollapsed", "contents": "ImGui_IsWindowCollapsed(${1:ctx})"},
{"trigger": "ImGui_IsWindowDocked", "contents": "ImGui_IsWindowDocked(${1:ctx})"},
{"trigger": "ImGui_IsWindowFocused", "contents": "ImGui_IsWindowFocused(${1:ctx}, ${2:flagsIn})"},
{"trigger": "ImGui_IsWindowHovered", "contents": "ImGui_IsWindowHovered(${1:ctx}, ${2:flagsIn})"},
{"trigger": "ImGui_Key_0", "contents": "ImGui_Key_0()"},
{"trigger": "ImGui_Key_1", "contents": "ImGui_Key_1()"},
{"trigger": "ImGui_Key_2", "contents": "ImGui_Key_2()"},
{"trigger": "ImGui_Key_3", "contents": "ImGui_Key_3()"},
{"trigger": "ImGui_Key_4", "contents": "ImGui_Key_4()"},
{"trigger": "ImGui_Key_5", "contents": "ImGui_Key_5()"},
{"trigger": "ImGui_Key_6", "contents": "ImGui_Key_6()"},
{"trigger": "ImGui_Key_7", "contents": "ImGui_Key_7()"},
{"trigger": "ImGui_Key_8", "contents": "ImGui_Key_8()"},
{"trigger": "ImGui_Key_9", "contents": "ImGui_Key_9()"},
{"trigger": "ImGui_Key_A", "contents": "ImGui_Key_A()"},
{"trigger": "ImGui_Key_Apostrophe", "contents": "ImGui_Key_Apostrophe()"},
{"trigger": "ImGui_Key_B", "contents": "ImGui_Key_B()"},
{"trigger": "ImGui_Key_Backslash", "contents": "ImGui_Key_Backslash()"},
{"trigger": "ImGui_Key_Backspace", "contents": "ImGui_Key_Backspace()"},
{"trigger": "ImGui_Key_C", "contents": "ImGui_Key_C()"},
{"trigger": "ImGui_Key_CapsLock", "contents": "ImGui_Key_CapsLock()"},
{"trigger": "ImGui_Key_Comma", "contents": "ImGui_Key_Comma()"},
{"trigger": "ImGui_Key_D", "contents": "ImGui_Key_D()"},
{"trigger": "ImGui_Key_Delete", "contents": "ImGui_Key_Delete()"},
{"trigger": "ImGui_Key_DownArrow", "contents": "ImGui_Key_DownArrow()"},
{"trigger": "ImGui_Key_E", "contents": "ImGui_Key_E()"},
{"trigger": "ImGui_Key_End", "contents": "ImGui_Key_End()"},
{"trigger": "ImGui_Key_Enter", "contents": "ImGui_Key_Enter()"},
{"trigger": "ImGui_Key_Equal", "contents": "ImGui_Key_Equal()"},
{"trigger": "ImGui_Key_Escape", "contents": "ImGui_Key_Escape()"},
{"trigger": "ImGui_Key_F", "contents": "ImGui_Key_F()"},
{"trigger": "ImGui_Key_F1", "contents": "ImGui_Key_F1()"},
{"trigger": "ImGui_Key_F10", "contents": "ImGui_Key_F10()"},
{"trigger": "ImGui_Key_F11", "contents": "ImGui_Key_F11()"},
{"trigger": "ImGui_Key_F12", "contents": "ImGui_Key_F12()"},
{"trigger": "ImGui_Key_F2", "contents": "ImGui_Key_F2()"},
{"trigger": "ImGui_Key_F3", "contents": "ImGui_Key_F3()"},
{"trigger": "ImGui_Key_F4", "contents": "ImGui_Key_F4()"},
{"trigger": "ImGui_Key_F5", "contents": "ImGui_Key_F5()"},
{"trigger": "ImGui_Key_F6", "contents": "ImGui_Key_F6()"},
{"trigger": "ImGui_Key_F7", "contents": "ImGui_Key_F7()"},
{"trigger": "ImGui_Key_F8", "contents": "ImGui_Key_F8()"},
{"trigger": "ImGui_Key_F9", "contents": "ImGui_Key_F9()"},
{"trigger": "ImGui_Key_G", "contents": "ImGui_Key_G()"},
{"trigger": "ImGui_Key_GraveAccent", "contents": "ImGui_Key_GraveAccent()"},
{"trigger": "ImGui_Key_H", "contents": "ImGui_Key_H()"},
{"trigger": "ImGui_Key_Home", "contents": "ImGui_Key_Home()"},
{"trigger": "ImGui_Key_I", "contents": "ImGui_Key_I()"},
{"trigger": "ImGui_Key_Insert", "contents": "ImGui_Key_Insert()"},