-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathcoldfusiontagcompletions.py
4564 lines (4559 loc) · 297 KB
/
coldfusiontagcompletions.py
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
import sublime
import sublime_plugin
class ColdFusionTagComplete(sublime_plugin.EventListener):
completions = {
'cfabort': {
'completions': [
("showerror\t@showerror", "showerror=\"$1\"$0"),
("attributecollection\t@attributecollection", "attributecollection=\"$1\"$0")
]
},
'cfapplet': {
'completions': [
("appletsource\t@appletsource", "appletsource=\"$1\"$0"),
("name\t@name", "name=\"$1\"$0"),
("height\t@height", "height=\"$1\"$0"),
("width\t@width", "width=\"$1\"$0"),
("vspace\t@vspace", "vspace=\"$1\"$0"),
("hspace\t@hspace", "hspace=\"$1\"$0"),
("align\t@align", "align=\"$1\"$0"),
("align=\"top\"\talign", "align=\"${1:top}\"$0"),
("align=\"left\"\talign", "align=\"${1:left}\"$0"),
("align=\"bottom\"\talign", "align=\"${1:bottom}\"$0"),
("align=\"baseline\"\talign", "align=\"${1:baseline}\"$0"),
("align=\"texttop\"\talign", "align=\"${1:texttop}\"$0"),
("align=\"absbottom\"\talign", "align=\"${1:absbottom}\"$0"),
("align=\"middle\"\talign", "align=\"${1:middle}\"$0"),
("align=\"absmiddle\"\talign", "align=\"${1:absmiddle}\"$0"),
("align=\"right\"\talign", "align=\"${1:right}\"$0"),
("notsupported\t@notsupported", "notsupported=\"$1\"$0")
]
},
'cfapplication': {
'completions': [
("name\t@name", "name=\"$1\"$0"),
("loginstorage\t@loginstorage", "loginstorage=\"$1\"$0"),
("loginstorage=\"cookie\"\tloginstorage", "loginstorage=\"${1:cookie}\"$0"),
("loginstorage=\"session\"\tloginstorage", "loginstorage=\"${1:session}\"$0"),
("clientmanagement\t@clientmanagement", "clientmanagement=\"$1\"$0"),
("clientmanagement=\"true\"\tclientmanagement", "clientmanagement=\"${1:true}\"$0"),
("clientmanagement=\"false\"\tclientmanagement", "clientmanagement=\"${1:false}\"$0"),
("clientstorage\t@clientstorage", "clientstorage=\"$1\"$0"),
("clientstorage=\"cookie\"\tclientstorage", "clientstorage=\"${1:cookie}\"$0"),
("clientstorage=\"registry\"\tclientstorage", "clientstorage=\"${1:registry}\"$0"),
("clientstorage=\"datasource_name\"\tclientstorage", "clientstorage=\"${1:datasource_name}\"$0"),
("setclientcookies\t@setclientcookies", "setclientcookies=\"$1\"$0"),
("setclientcookies=\"true\"\tsetclientcookies", "setclientcookies=\"${1:true}\"$0"),
("setclientcookies=\"false\"\tsetclientcookies", "setclientcookies=\"${1:false}\"$0"),
("sessionmanagement\t@sessionmanagement", "sessionmanagement=\"$1\"$0"),
("sessionmanagement=\"true\"\tsessionmanagement", "sessionmanagement=\"${1:true}\"$0"),
("sessionmanagement=\"false\"\tsessionmanagement", "sessionmanagement=\"${1:false}\"$0"),
("sessiontimeout\t@sessiontimeout", "sessiontimeout=\"$1\"$0"),
("applicationtimeout\t@applicationtimeout", "applicationtimeout=\"$1\"$0"),
("setdomaincookies\t@setdomaincookies", "setdomaincookies=\"$1\"$0"),
("setdomaincookies=\"true\"\tsetdomaincookies", "setdomaincookies=\"${1:true}\"$0"),
("setdomaincookies=\"false\"\tsetdomaincookies", "setdomaincookies=\"${1:false}\"$0"),
("scriptprotect\t@scriptprotect", "scriptprotect=\"$1\"$0"),
("scriptprotect=\"none\"\tscriptprotect", "scriptprotect=\"${1:none}\"$0"),
("scriptprotect=\"all\"\tscriptprotect", "scriptprotect=\"${1:all}\"$0"),
("scriptprotect=\"form\"\tscriptprotect", "scriptprotect=\"${1:form}\"$0"),
("scriptprotect=\"url\"\tscriptprotect", "scriptprotect=\"${1:url}\"$0"),
("scriptprotect=\"cookie\"\tscriptprotect", "scriptprotect=\"${1:cookie}\"$0"),
("scriptprotect=\"cgi\"\tscriptprotect", "scriptprotect=\"${1:cgi}\"$0"),
("scriptprotect=\"form,url\"\tscriptprotect", "scriptprotect=\"${1:form,url}\"$0"),
("scriptprotect=\"form,url,cookie\"\tscriptprotect", "scriptprotect=\"${1:form,url,cookie}\"$0"),
("scriptprotect=\"form,url,cookie,cgi\"\tscriptprotect", "scriptprotect=\"${1:form,url,cookie,cgi}\"$0"),
("securejsonprefix\t@securejsonprefix", "securejsonprefix=\"$1\"$0"),
("securejsonprefix=\"true\"\tsecurejsonprefix", "securejsonprefix=\"${1:true}\"$0"),
("securejsonprefix=\"false\"\tsecurejsonprefix", "securejsonprefix=\"${1:false}\"$0"),
("securejson\t@securejson", "securejson=\"$1\"$0"),
("securejson=\"true\"\tsecurejson", "securejson=\"${1:true}\"$0"),
("securejson=\"false\"\tsecurejson", "securejson=\"${1:false}\"$0"),
("serverSideFormValidation\t@serverSideFormValidation", "serverSideFormValidation=\"$1\"$0"),
("serverSideFormValidation=\"true\"\tserverSideFormValidation", "serverSideFormValidation=\"${1:true}\"$0"),
("serverSideFormValidation=\"false\"\tserverSideFormValidation", "serverSideFormValidation=\"${1:false}\"$0")
]
},
'cfargument': {
'completions': [
("name\t@name", "name=\"$1\"$0"),
("type\t@type", "type=\"$1\"$0"),
("type=\"any\"\ttype", "type=\"${1:any}\"$0"),
("type=\"array\"\ttype", "type=\"${1:array}\"$0"),
("type=\"binary\"\ttype", "type=\"${1:binary}\"$0"),
("type=\"boolean\"\ttype", "type=\"${1:boolean}\"$0"),
("type=\"date\"\ttype", "type=\"${1:date}\"$0"),
("type=\"guid\"\ttype", "type=\"${1:guid}\"$0"),
("type=\"numeric\"\ttype", "type=\"${1:numeric}\"$0"),
("type=\"query\"\ttype", "type=\"${1:query}\"$0"),
("type=\"string\"\ttype", "type=\"${1:string}\"$0"),
("type=\"struct\"\ttype", "type=\"${1:struct}\"$0"),
("type=\"uuid\"\ttype", "type=\"${1:uuid}\"$0"),
("type=\"xml\"\ttype", "type=\"${1:xml}\"$0"),
("type=\"variablename\"\ttype", "type=\"${1:variablename}\"$0"),
("type=\"(component name)\"\ttype", "type=\"${1:(component name)}\"$0"),
("required\t@required", "required=\"$1\"$0"),
("required=\"true\"\trequired", "required=\"${1:true}\"$0"),
("required=\"false\"\trequired", "required=\"${1:false}\"$0"),
("default\t@default", "default=\"$1\"$0"),
("displayname\t@displayname", "displayname=\"$1\"$0"),
("hint\t@hint", "hint=\"$1\"$0")
]
},
'cfassociate': {
'completions': [
("basetag\t@basetag", "basetag=\"$1\"$0"),
("datacollection\t@datacollection", "datacollection=\"$1\"$0")
]
},
'cfbreak': {
'completions': [
]
},
'cfcache': {
'completions': [
("action\t@action", "action=\"$1\"$0"),
("action=\"cache\"\taction", "action=\"${1:cache}\"$0"),
("action=\"flush\"\taction", "action=\"${1:flush}\"$0"),
("action=\"clientcache\"\taction", "action=\"${1:clientcache}\"$0"),
("action=\"servercache\"\taction", "action=\"${1:servercache}\"$0"),
("action=\"optimal\"\taction", "action=\"${1:optimal}\"$0"),
("action=\"get\"\taction", "action=\"${1:get}\"$0"),
("action=\"put\"\taction", "action=\"${1:put}\"$0"),
("directory\t@directory", "directory=\"$1\"$0"),
("timespan\t@timespan", "timespan=\"$1\"$0"),
("expireurl\t@expireurl", "expireurl=\"$1\"$0"),
("username\t@username", "username=\"$1\"$0"),
("password\t@password", "password=\"$1\"$0"),
("port\t@port", "port=\"$1\"$0"),
("protocol\t@protocol", "protocol=\"$1\"$0"),
("protocol=\"http://\"\tprotocol", "protocol=\"${1:http://}\"$0"),
("protocol=\"https://\"\tprotocol", "protocol=\"${1:https://}\"$0"),
("value\t@value", "value=\"$1\"$0"),
("metadata\t@metadata", "metadata=\"$1\"$0"),
("stripwhitespace\t@stripwhitespace", "stripwhitespace=\"$1\"$0"),
("stripwhitespace=\"true\"\tstripwhitespace", "stripwhitespace=\"${1:true}\"$0"),
("stripwhitespace=\"false\"\tstripwhitespace", "stripwhitespace=\"${1:false}\"$0"),
("throwonerror\t@throwonerror", "throwonerror=\"$1\"$0"),
("throwonerror=\"true\"\tthrowonerror", "throwonerror=\"${1:true}\"$0"),
("throwonerror=\"false\"\tthrowonerror", "throwonerror=\"${1:false}\"$0"),
("id\t@id", "id=\"$1\"$0"),
("key\t@key", "key=\"$1\"$0"),
("usecache\t@usecache", "usecache=\"$1\"$0"),
("usecache=\"true\"\tusecache", "usecache=\"${1:true}\"$0"),
("usecache=\"false\"\tusecache", "usecache=\"${1:false}\"$0"),
("dependson\t@dependson", "dependson=\"$1\"$0"),
("idletime\t@idletime", "idletime=\"$1\"$0"),
("cachedirectory\t@cachedirectory", "cachedirectory=\"$1\"$0"),
("name\t@name", "name=\"$1\"$0")
]
},
'cfcalendar': {
'completions': [
("name\t@name", "name=\"$1\"$0"),
("height\t@height", "height=\"$1\"$0"),
("width\t@width", "width=\"$1\"$0"),
("selecteddate\t@selecteddate", "selecteddate=\"$1\"$0"),
("startrange\t@startrange", "startrange=\"$1\"$0"),
("endrange\t@endrange", "endrange=\"$1\"$0"),
("disabled\t@disabled", "disabled=\"$1\"$0"),
("disabled=\"true\"\tdisabled", "disabled=\"${1:true}\"$0"),
("disabled=\"false\"\tdisabled", "disabled=\"${1:false}\"$0"),
("mask\t@mask", "mask=\"$1\"$0"),
("mask=\"MM/DD/YYYY\"\tmask", "mask=\"${1:MM/DD/YYYY}\"$0"),
("mask=\"DD/MM/YYYY\"\tmask", "mask=\"${1:DD/MM/YYYY}\"$0"),
("mask=\"MM/YYYY\"\tmask", "mask=\"${1:MM/YYYY}\"$0"),
("mask=\"MM/YY\"\tmask", "mask=\"${1:MM/YY}\"$0"),
("mask=\"YYYY-MM-DD\"\tmask", "mask=\"${1:YYYY-MM-DD}\"$0"),
("mask=\"EEE DD. MMM YYYY\"\tmask", "mask=\"${1:EEE DD. MMM YYYY}\"$0"),
("firstdayofweek\t@firstdayofweek", "firstdayofweek=\"$1\"$0"),
("daynames\t@daynames", "daynames=\"$1\"$0"),
("daynames=\"S,M,T,W,Th,F,S\"\tdaynames", "daynames=\"${1:S,M,T,W,Th,F,S}\"$0"),
("daynames=\"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday\"\tdaynames", "daynames=\"${1:Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday}\"$0"),
("daynames=\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\"\tdaynames", "daynames=\"${1:Sun,Mon,Tue,Wed,Thu,Fri,Sat}\"$0"),
("monthnames\t@monthnames", "monthnames=\"$1\"$0"),
("monthnames=\"January,February,March,April,May,June,July,August,September,October,November,December\"\tmonthnames", "monthnames=\"${1:January,February,March,April,May,June,July,August,September,October,November,December}\"$0"),
("monthnames=\"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec\"\tmonthnames", "monthnames=\"${1:Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec}\"$0"),
("enabled\t@enabled", "enabled=\"$1\"$0"),
("enabled=\"true\"\tenabled", "enabled=\"${1:true}\"$0"),
("enabled=\"false\"\tenabled", "enabled=\"${1:false}\"$0"),
("visible\t@visible", "visible=\"$1\"$0"),
("visible=\"true\"\tvisible", "visible=\"${1:true}\"$0"),
("visible=\"false\"\tvisible", "visible=\"${1:false}\"$0"),
("tooltip\t@tooltip", "tooltip=\"$1\"$0"),
("style\t@style", "style=\"$1\"$0"),
("style=\"haloBlue\"\tstyle", "style=\"${1:haloBlue}\"$0"),
("style=\"haloGreen\"\tstyle", "style=\"${1:haloGreen}\"$0"),
("style=\"haloOrange\"\tstyle", "style=\"${1:haloOrange}\"$0"),
("style=\"haloSilver\"\tstyle", "style=\"${1:haloSilver}\"$0"),
("onchange\t@onchange", "onchange=\"$1\"$0"),
("onblur\t@onblur", "onblur=\"$1\"$0"),
("onfocus\t@onfocus", "onfocus=\"$1\"$0")
]
},
'cfcase': {
'completions': [
("value\t@value", "value=\"$1\"$0"),
("delimiters\t@delimiters", "delimiters=\"$1\"$0"),
("delimiters=\",\"\tdelimiters", "delimiters=\"${1:,}\"$0"),
("delimiters=\";\"\tdelimiters", "delimiters=\"${1:;}\"$0"),
("delimiters=\"|\"\tdelimiters", "delimiters=\"${1:|}\"$0"),
("delimiters=\":\"\tdelimiters", "delimiters=\"${1::}\"$0")
]
},
'cfcatch': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"application\"\ttype", "type=\"${1:application}\"$0"),
("type=\"database\"\ttype", "type=\"${1:database}\"$0"),
("type=\"template\"\ttype", "type=\"${1:template}\"$0"),
("type=\"security\"\ttype", "type=\"${1:security}\"$0"),
("type=\"object\"\ttype", "type=\"${1:object}\"$0"),
("type=\"missinginclude\"\ttype", "type=\"${1:missinginclude}\"$0"),
("type=\"expression\"\ttype", "type=\"${1:expression}\"$0"),
("type=\"lock\"\ttype", "type=\"${1:lock}\"$0"),
("type=\"custom_type\"\ttype", "type=\"${1:custom_type}\"$0"),
("type=\"searchengine\"\ttype", "type=\"${1:searchengine}\"$0"),
("type=\"any\"\ttype", "type=\"${1:any}\"$0")
]
},
'cfchart': {
'completions': [
("format\t@format", "format=\"$1\"$0"),
("format=\"flash\"\tformat", "format=\"${1:flash}\"$0"),
("format=\"jpg\"\tformat", "format=\"${1:jpg}\"$0"),
("format=\"png\"\tformat", "format=\"${1:png}\"$0"),
("chartheight\t@chartheight", "chartheight=\"$1\"$0"),
("chartwidth\t@chartwidth", "chartwidth=\"$1\"$0"),
("scalefrom\t@scalefrom", "scalefrom=\"$1\"$0"),
("scaleto\t@scaleto", "scaleto=\"$1\"$0"),
("showxgridlines\t@showxgridlines", "showxgridlines=\"$1\"$0"),
("showxgridlines=\"true\"\tshowxgridlines", "showxgridlines=\"${1:true}\"$0"),
("showxgridlines=\"false\"\tshowxgridlines", "showxgridlines=\"${1:false}\"$0"),
("showygridlines\t@showygridlines", "showygridlines=\"$1\"$0"),
("showygridlines=\"true\"\tshowygridlines", "showygridlines=\"${1:true}\"$0"),
("showygridlines=\"false\"\tshowygridlines", "showygridlines=\"${1:false}\"$0"),
("gridlines\t@gridlines", "gridlines=\"$1\"$0"),
("seriesplacement\t@seriesplacement", "seriesplacement=\"$1\"$0"),
("seriesplacement=\"default\"\tseriesplacement", "seriesplacement=\"${1:default}\"$0"),
("seriesplacement=\"cluster\"\tseriesplacement", "seriesplacement=\"${1:cluster}\"$0"),
("seriesplacement=\"stacked\"\tseriesplacement", "seriesplacement=\"${1:stacked}\"$0"),
("seriesplacement=\"percent\"\tseriesplacement", "seriesplacement=\"${1:percent}\"$0"),
("foregroundcolor\t@foregroundcolor", "foregroundcolor=\"$1\"$0"),
("foregroundcolor=\"black\"\tforegroundcolor", "foregroundcolor=\"${1:black}\"$0"),
("foregroundcolor=\"red\"\tforegroundcolor", "foregroundcolor=\"${1:red}\"$0"),
("foregroundcolor=\"blue\"\tforegroundcolor", "foregroundcolor=\"${1:blue}\"$0"),
("foregroundcolor=\"magenta\"\tforegroundcolor", "foregroundcolor=\"${1:magenta}\"$0"),
("foregroundcolor=\"cyan\"\tforegroundcolor", "foregroundcolor=\"${1:cyan}\"$0"),
("foregroundcolor=\"orange\"\tforegroundcolor", "foregroundcolor=\"${1:orange}\"$0"),
("foregroundcolor=\"darkgray\"\tforegroundcolor", "foregroundcolor=\"${1:darkgray}\"$0"),
("foregroundcolor=\"pink\"\tforegroundcolor", "foregroundcolor=\"${1:pink}\"$0"),
("foregroundcolor=\"white\"\tforegroundcolor", "foregroundcolor=\"${1:white}\"$0"),
("foregroundcolor=\"lightgray\"\tforegroundcolor", "foregroundcolor=\"${1:lightgray}\"$0"),
("foregroundcolor=\"yellow\"\tforegroundcolor", "foregroundcolor=\"${1:yellow}\"$0"),
("backgroundcolor\t@backgroundcolor", "backgroundcolor=\"$1\"$0"),
("backgroundcolor=\"black\"\tbackgroundcolor", "backgroundcolor=\"${1:black}\"$0"),
("backgroundcolor=\"red\"\tbackgroundcolor", "backgroundcolor=\"${1:red}\"$0"),
("backgroundcolor=\"blue\"\tbackgroundcolor", "backgroundcolor=\"${1:blue}\"$0"),
("backgroundcolor=\"magenta\"\tbackgroundcolor", "backgroundcolor=\"${1:magenta}\"$0"),
("backgroundcolor=\"cyan\"\tbackgroundcolor", "backgroundcolor=\"${1:cyan}\"$0"),
("backgroundcolor=\"orange\"\tbackgroundcolor", "backgroundcolor=\"${1:orange}\"$0"),
("backgroundcolor=\"darkgray\"\tbackgroundcolor", "backgroundcolor=\"${1:darkgray}\"$0"),
("backgroundcolor=\"pink\"\tbackgroundcolor", "backgroundcolor=\"${1:pink}\"$0"),
("backgroundcolor=\"white\"\tbackgroundcolor", "backgroundcolor=\"${1:white}\"$0"),
("backgroundcolor=\"lightgray\"\tbackgroundcolor", "backgroundcolor=\"${1:lightgray}\"$0"),
("backgroundcolor=\"yellow\"\tbackgroundcolor", "backgroundcolor=\"${1:yellow}\"$0"),
("showborder\t@showborder", "showborder=\"$1\"$0"),
("showborder=\"true\"\tshowborder", "showborder=\"${1:true}\"$0"),
("showborder=\"false\"\tshowborder", "showborder=\"${1:false}\"$0"),
("databackgroundcolor\t@databackgroundcolor", "databackgroundcolor=\"$1\"$0"),
("databackgroundcolor=\"black\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:black}\"$0"),
("databackgroundcolor=\"red\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:red}\"$0"),
("databackgroundcolor=\"blue\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:blue}\"$0"),
("databackgroundcolor=\"magenta\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:magenta}\"$0"),
("databackgroundcolor=\"cyan\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:cyan}\"$0"),
("databackgroundcolor=\"orange\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:orange}\"$0"),
("databackgroundcolor=\"darkgray\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:darkgray}\"$0"),
("databackgroundcolor=\"pink\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:pink}\"$0"),
("databackgroundcolor=\"white\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:white}\"$0"),
("databackgroundcolor=\"lightgray\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:lightgray}\"$0"),
("databackgroundcolor=\"yellow\"\tdatabackgroundcolor", "databackgroundcolor=\"${1:yellow}\"$0"),
("font\t@font", "font=\"$1\"$0"),
("font=\"arial\"\tfont", "font=\"${1:arial}\"$0"),
("font=\"times\"\tfont", "font=\"${1:times}\"$0"),
("font=\"courier\"\tfont", "font=\"${1:courier}\"$0"),
("font=\"arialunicodeMS\"\tfont", "font=\"${1:arialunicodeMS}\"$0"),
("fontsize\t@fontsize", "fontsize=\"$1\"$0"),
("fontitalic\t@fontitalic", "fontitalic=\"$1\"$0"),
("fontitalic=\"true\"\tfontitalic", "fontitalic=\"${1:true}\"$0"),
("fontitalic=\"false\"\tfontitalic", "fontitalic=\"${1:false}\"$0"),
("fontbold\t@fontbold", "fontbold=\"$1\"$0"),
("fontbold=\"true\"\tfontbold", "fontbold=\"${1:true}\"$0"),
("fontbold=\"false\"\tfontbold", "fontbold=\"${1:false}\"$0"),
("labelformat\t@labelformat", "labelformat=\"$1\"$0"),
("labelformat=\"number\"\tlabelformat", "labelformat=\"${1:number}\"$0"),
("labelformat=\"currency\"\tlabelformat", "labelformat=\"${1:currency}\"$0"),
("labelformat=\"percent\"\tlabelformat", "labelformat=\"${1:percent}\"$0"),
("labelformat=\"date\"\tlabelformat", "labelformat=\"${1:date}\"$0"),
("xaxistitle\t@xaxistitle", "xaxistitle=\"$1\"$0"),
("yaxistitle\t@yaxistitle", "yaxistitle=\"$1\"$0"),
("xaxistype\t@xaxistype", "xaxistype=\"$1\"$0"),
("xaxistype=\"category\"\txaxistype", "xaxistype=\"${1:category}\"$0"),
("xaxistype=\"scale\"\txaxistype", "xaxistype=\"${1:scale}\"$0"),
("yaxistype\t@yaxistype", "yaxistype=\"$1\"$0"),
("yaxistype=\"category\"\tyaxistype", "yaxistype=\"${1:category}\"$0"),
("yaxistype=\"scale\"\tyaxistype", "yaxistype=\"${1:scale}\"$0"),
("sortxaxis\t@sortxaxis", "sortxaxis=\"$1\"$0"),
("sortxaxis=\"true\"\tsortxaxis", "sortxaxis=\"${1:true}\"$0"),
("sortxaxis=\"false\"\tsortxaxis", "sortxaxis=\"${1:false}\"$0"),
("show3d\t@show3d", "show3d=\"$1\"$0"),
("show3d=\"true\"\tshow3d", "show3d=\"${1:true}\"$0"),
("show3d=\"false\"\tshow3d", "show3d=\"${1:false}\"$0"),
("xoffset\t@xoffset", "xoffset=\"$1\"$0"),
("yoffset\t@yoffset", "yoffset=\"$1\"$0"),
("showlegend\t@showlegend", "showlegend=\"$1\"$0"),
("showlegend=\"true\"\tshowlegend", "showlegend=\"${1:true}\"$0"),
("showlegend=\"false\"\tshowlegend", "showlegend=\"${1:false}\"$0"),
("tipstyle\t@tipstyle", "tipstyle=\"$1\"$0"),
("tipstyle=\"mouseDown\"\ttipstyle", "tipstyle=\"${1:mouseDown}\"$0"),
("tipstyle=\"mouseOver\"\ttipstyle", "tipstyle=\"${1:mouseOver}\"$0"),
("tipstyle=\"none\"\ttipstyle", "tipstyle=\"${1:none}\"$0"),
("tipbgcolor\t@tipbgcolor", "tipbgcolor=\"$1\"$0"),
("tipbgcolor=\"black\"\ttipbgcolor", "tipbgcolor=\"${1:black}\"$0"),
("tipbgcolor=\"red\"\ttipbgcolor", "tipbgcolor=\"${1:red}\"$0"),
("tipbgcolor=\"blue\"\ttipbgcolor", "tipbgcolor=\"${1:blue}\"$0"),
("tipbgcolor=\"magenta\"\ttipbgcolor", "tipbgcolor=\"${1:magenta}\"$0"),
("tipbgcolor=\"cyan\"\ttipbgcolor", "tipbgcolor=\"${1:cyan}\"$0"),
("tipbgcolor=\"orange\"\ttipbgcolor", "tipbgcolor=\"${1:orange}\"$0"),
("tipbgcolor=\"darkgray\"\ttipbgcolor", "tipbgcolor=\"${1:darkgray}\"$0"),
("tipbgcolor=\"pink\"\ttipbgcolor", "tipbgcolor=\"${1:pink}\"$0"),
("tipbgcolor=\"white\"\ttipbgcolor", "tipbgcolor=\"${1:white}\"$0"),
("tipbgcolor=\"lightgray\"\ttipbgcolor", "tipbgcolor=\"${1:lightgray}\"$0"),
("tipbgcolor=\"yellow\"\ttipbgcolor", "tipbgcolor=\"${1:yellow}\"$0"),
("showmarkers\t@showmarkers", "showmarkers=\"$1\"$0"),
("showmarkers=\"true\"\tshowmarkers", "showmarkers=\"${1:true}\"$0"),
("showmarkers=\"false\"\tshowmarkers", "showmarkers=\"${1:false}\"$0"),
("markersize\t@markersize", "markersize=\"$1\"$0"),
("pieslicestyle\t@pieslicestyle", "pieslicestyle=\"$1\"$0"),
("pieslicestyle=\"solid\"\tpieslicestyle", "pieslicestyle=\"${1:solid}\"$0"),
("pieslicestyle=\"sliced\"\tpieslicestyle", "pieslicestyle=\"${1:sliced}\"$0"),
("URL\t@URL", "URL=\"$1\"$0"),
("name\t@name", "name=\"$1\"$0"),
("style\t@style", "style=\"$1\"$0"),
("style=\"beige\"\tstyle", "style=\"${1:beige}\"$0"),
("style=\"blue\"\tstyle", "style=\"${1:blue}\"$0"),
("style=\"default\"\tstyle", "style=\"${1:default}\"$0"),
("style=\"red\"\tstyle", "style=\"${1:red}\"$0"),
("style=\"silver\"\tstyle", "style=\"${1:silver}\"$0"),
("style=\"yellow\"\tstyle", "style=\"${1:yellow}\"$0"),
("title\t@title", "title=\"$1\"$0")
]
},
'cfchartdata': {
'completions': [
("item\t@item", "item=\"$1\"$0"),
("value\t@value", "value=\"$1\"$0")
]
},
'cfchartseries': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"bar\"\ttype", "type=\"${1:bar}\"$0"),
("type=\"line\"\ttype", "type=\"${1:line}\"$0"),
("type=\"pyramid\"\ttype", "type=\"${1:pyramid}\"$0"),
("type=\"area\"\ttype", "type=\"${1:area}\"$0"),
("type=\"horizontalbar\"\ttype", "type=\"${1:horizontalbar}\"$0"),
("type=\"cone\"\ttype", "type=\"${1:cone}\"$0"),
("type=\"curve\"\ttype", "type=\"${1:curve}\"$0"),
("type=\"cylinder\"\ttype", "type=\"${1:cylinder}\"$0"),
("type=\"step\"\ttype", "type=\"${1:step}\"$0"),
("type=\"scatter\"\ttype", "type=\"${1:scatter}\"$0"),
("type=\"pie\"\ttype", "type=\"${1:pie}\"$0"),
("query\t@query", "query=\"$1\"$0"),
("itemcolumn\t@itemcolumn", "itemcolumn=\"$1\"$0"),
("valuecolumn\t@valuecolumn", "valuecolumn=\"$1\"$0"),
("serieslabel\t@serieslabel", "serieslabel=\"$1\"$0"),
("seriescolor\t@seriescolor", "seriescolor=\"$1\"$0"),
("paintstyle\t@paintstyle", "paintstyle=\"$1\"$0"),
("paintstyle=\"plain\"\tpaintstyle", "paintstyle=\"${1:plain}\"$0"),
("paintstyle=\"raise\"\tpaintstyle", "paintstyle=\"${1:raise}\"$0"),
("paintstyle=\"shade\"\tpaintstyle", "paintstyle=\"${1:shade}\"$0"),
("paintstyle=\"light\"\tpaintstyle", "paintstyle=\"${1:light}\"$0"),
("markerstyle\t@markerstyle", "markerstyle=\"$1\"$0"),
("markerstyle=\"rectangle\"\tmarkerstyle", "markerstyle=\"${1:rectangle}\"$0"),
("markerstyle=\"triangle\"\tmarkerstyle", "markerstyle=\"${1:triangle}\"$0"),
("markerstyle=\"diamond\"\tmarkerstyle", "markerstyle=\"${1:diamond}\"$0"),
("markerstyle=\"circle\"\tmarkerstyle", "markerstyle=\"${1:circle}\"$0"),
("markerstyle=\"letter\"\tmarkerstyle", "markerstyle=\"${1:letter}\"$0"),
("markerstyle=\"mcross\"\tmarkerstyle", "markerstyle=\"${1:mcross}\"$0"),
("markerstyle=\"snow\"\tmarkerstyle", "markerstyle=\"${1:snow}\"$0"),
("markerstyle=\"rcross\"\tmarkerstyle", "markerstyle=\"${1:rcross}\"$0"),
("colorlist\t@colorlist", "colorlist=\"$1\"$0"),
("datalabelstyle\t@datalabelstyle", "datalabelstyle=\"$1\"$0"),
("datalabelstyle=\"none\"\tdatalabelstyle", "datalabelstyle=\"${1:none}\"$0"),
("datalabelstyle=\"value\"\tdatalabelstyle", "datalabelstyle=\"${1:value}\"$0"),
("datalabelstyle=\"rowlabel\"\tdatalabelstyle", "datalabelstyle=\"${1:rowlabel}\"$0"),
("datalabelstyle=\"columnlabel\"\tdatalabelstyle", "datalabelstyle=\"${1:columnlabel}\"$0"),
("datalabelstyle=\"pattern\"\tdatalabelstyle", "datalabelstyle=\"${1:pattern}\"$0")
]
},
'cfcol': {
'completions': [
("header\t@header", "header=\"$1\"$0"),
("width\t@width", "width=\"$1\"$0"),
("align\t@align", "align=\"$1\"$0"),
("align=\"left\"\talign", "align=\"${1:left}\"$0"),
("align=\"center\"\talign", "align=\"${1:center}\"$0"),
("align=\"right\"\talign", "align=\"${1:right}\"$0"),
("text\t@text", "text=\"$1\"$0")
]
},
'cfcollection': {
'completions': [
("action\t@action", "action=\"$1\"$0"),
("action=\"categorylist\"\taction", "action=\"${1:categorylist}\"$0"),
("action=\"create\"\taction", "action=\"${1:create}\"$0"),
("action=\"delete\"\taction", "action=\"${1:delete}\"$0"),
("action=\"optimize\"\taction", "action=\"${1:optimize}\"$0"),
("action=\"list\"\taction", "action=\"${1:list}\"$0"),
("action=\"map\"\taction", "action=\"${1:map}\"$0"),
("action=\"repair\"\taction", "action=\"${1:repair}\"$0"),
("collection\t@collection", "collection=\"$1\"$0"),
("path\t@path", "path=\"$1\"$0"),
("language\t@language", "language=\"$1\"$0"),
("name\t@name", "name=\"$1\"$0"),
("categories\t@categories", "categories=\"$1\"$0"),
("categories=\"true\"\tcategories", "categories=\"${1:true}\"$0"),
("categories=\"false\"\tcategories", "categories=\"${1:false}\"$0"),
("engine\t@engine", "engine=\"$1\"$0"),
("engine=\"verity\"\tengine", "engine=\"${1:verity}\"$0"),
("engine=\"solr\"\tengine", "engine=\"${1:solr}\"$0")
]
},
'cfcomponent': {
'completions': [
("extends\t@extends", "extends=\"$1\"$0"),
("initmethod\t@initmethod", "initmethod=\"$1\"$0"),
("implements\t@implements", "implements=\"$1\"$0"),
("output\t@output", "output=\"$1\"$0"),
("output=\"true\"\toutput", "output=\"${1:true}\"$0"),
("output=\"false\"\toutput", "output=\"${1:false}\"$0"),
("displayname\t@displayname", "displayname=\"$1\"$0"),
("hint\t@hint", "hint=\"$1\"$0"),
("style\t@style", "style=\"$1\"$0"),
("style=\"rpc\"\tstyle", "style=\"${1:rpc}\"$0"),
("style=\"document\"\tstyle", "style=\"${1:document}\"$0"),
("namespace\t@namespace", "namespace=\"$1\"$0"),
("serviceportname\t@serviceportname", "serviceportname=\"$1\"$0"),
("porttypename\t@porttypename", "porttypename=\"$1\"$0"),
("bindingname\t@bindingname", "bindingname=\"$1\"$0"),
("wsdlfile\t@wsdlfile", "wsdlfile=\"$1\"$0"),
("serviceaddress\t@serviceaddress", "serviceaddress=\"$1\"$0"),
("persistent\t@persistent", "persistent=\"$1\"$0"),
("persistent=\"true\"\tpersistent", "persistent=\"${1:true}\"$0"),
("persistent=\"false\"\tpersistent", "persistent=\"${1:false}\"$0"),
("entityname\t@entityname", "entityname=\"$1\"$0"),
("table\t@table", "table=\"$1\"$0"),
("schema\t@schema", "schema=\"$1\"$0"),
("catalog\t@catalog", "catalog=\"$1\"$0"),
("dynamicinsert\t@dynamicinsert", "dynamicinsert=\"$1\"$0"),
("dynamicinsert=\"true\"\tdynamicinsert", "dynamicinsert=\"${1:true}\"$0"),
("dynamicinsert=\"false\"\tdynamicinsert", "dynamicinsert=\"${1:false}\"$0"),
("dynamicupdate\t@dynamicupdate", "dynamicupdate=\"$1\"$0"),
("dynamicupdate=\"true\"\tdynamicupdate", "dynamicupdate=\"${1:true}\"$0"),
("dynamicupdate=\"false\"\tdynamicupdate", "dynamicupdate=\"${1:false}\"$0"),
("readonly\t@readonly", "readonly=\"$1\"$0"),
("readonly=\"true\"\treadonly", "readonly=\"${1:true}\"$0"),
("readonly=\"false\"\treadonly", "readonly=\"${1:false}\"$0"),
("selectbeforeupdate\t@selectbeforeupdate", "selectbeforeupdate=\"$1\"$0"),
("selectbeforeupdate=\"true\"\tselectbeforeupdate", "selectbeforeupdate=\"${1:true}\"$0"),
("selectbeforeupdate=\"false\"\tselectbeforeupdate", "selectbeforeupdate=\"${1:false}\"$0"),
("batchsize\t@batchsize", "batchsize=\"$1\"$0"),
("optimisticlock\t@optimisticlock", "optimisticlock=\"$1\"$0"),
("optimisticlock=\"none\"\toptimisticlock", "optimisticlock=\"${1:none}\"$0"),
("optimisticlock=\"dirty\"\toptimisticlock", "optimisticlock=\"${1:dirty}\"$0"),
("optimisticlock=\"all\"\toptimisticlock", "optimisticlock=\"${1:all}\"$0"),
("optimisticlock=\"version\"\toptimisticlock", "optimisticlock=\"${1:version}\"$0"),
("lazy\t@lazy", "lazy=\"$1\"$0"),
("lazy=\"true\"\tlazy", "lazy=\"${1:true}\"$0"),
("lazy=\"false\"\tlazy", "lazy=\"${1:false}\"$0"),
("rowid\t@rowid", "rowid=\"$1\"$0"),
("discriminatorColumn\t@discriminatorColumn", "discriminatorColumn=\"$1\"$0"),
("discriminatorValue\t@discriminatorValue", "discriminatorValue=\"$1\"$0"),
("joinColumn\t@joinColumn", "joinColumn=\"$1\"$0"),
("embedded\t@embedded", "embedded=\"$1\"$0"),
("embedded=\"true\"\tembedded", "embedded=\"${1:true}\"$0"),
("embedded=\"false\"\tembedded", "embedded=\"${1:false}\"$0"),
("cacheUse\t@cacheUse", "cacheUse=\"$1\"$0"),
("cacheUse=\"read-only\"\tcacheUse", "cacheUse=\"${1:read-only}\"$0"),
("cacheUse=\"nonstrict-read-write\"\tcacheUse", "cacheUse=\"${1:nonstrict-read-write}\"$0"),
("cacheUse=\"read-write\"\tcacheUse", "cacheUse=\"${1:read-write}\"$0"),
("cacheUse=\"transactional\"\tcacheUse", "cacheUse=\"${1:transactional}\"$0"),
("cacheName\t@cacheName", "cacheName=\"$1\"$0"),
("saveMapping\t@saveMapping", "saveMapping=\"$1\"$0"),
("saveMapping=\"true\"\tsaveMapping", "saveMapping=\"${1:true}\"$0"),
("saveMapping=\"false\"\tsaveMapping", "saveMapping=\"${1:false}\"$0"),
("accessors\t@accessors", "accessors=\"$1\"$0"),
("accessors=\"true\"\taccessors", "accessors=\"${1:true}\"$0"),
("accessors=\"false\"\taccessors", "accessors=\"${1:false}\"$0"),
("serializable\t@serializable", "serializable=\"$1\"$0"),
("serializable=\"true\"\tserializable", "serializable=\"${1:true}\"$0"),
("serializable=\"false\"\tserializable", "serializable=\"${1:false}\"$0"),
("attribute\t@attribute", "attribute=\"$1\"$0"),
("attribute=\"true\"\tattribute", "attribute=\"${1:true}\"$0"),
("attribute=\"false\"\tattribute", "attribute=\"${1:false}\"$0")
]
},
'cfcontent': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"text/html\"\ttype", "type=\"${1:text/html}\"$0"),
("type=\"text/plain\"\ttype", "type=\"${1:text/plain}\"$0"),
("type=\"application/msword\"\ttype", "type=\"${1:application/msword}\"$0"),
("type=\"application/msexcel\"\ttype", "type=\"${1:application/msexcel}\"$0"),
("type=\"application/poscript\"\ttype", "type=\"${1:application/poscript}\"$0"),
("type=\"application/x-zip-compressed\"\ttype", "type=\"${1:application/x-zip-compressed}\"$0"),
("type=\"application/pdf\"\ttype", "type=\"${1:application/pdf}\"$0"),
("type=\"application/rtf\"\ttype", "type=\"${1:application/rtf}\"$0"),
("type=\"video/x-msvideo\"\ttype", "type=\"${1:video/x-msvideo}\"$0"),
("type=\"video/quicktime\"\ttype", "type=\"${1:video/quicktime}\"$0"),
("type=\"video/x-mpeg2\"\ttype", "type=\"${1:video/x-mpeg2}\"$0"),
("type=\"audio/x-pn/realaudio\"\ttype", "type=\"${1:audio/x-pn/realaudio}\"$0"),
("type=\"audio/x-mpeg\"\ttype", "type=\"${1:audio/x-mpeg}\"$0"),
("type=\"audio/x-waw\"\ttype", "type=\"${1:audio/x-waw}\"$0"),
("type=\"audio/x-aiff\"\ttype", "type=\"${1:audio/x-aiff}\"$0"),
("type=\"audio/basic\"\ttype", "type=\"${1:audio/basic}\"$0"),
("type=\"image/tiff\"\ttype", "type=\"${1:image/tiff}\"$0"),
("type=\"image/jpeg\"\ttype", "type=\"${1:image/jpeg}\"$0"),
("type=\"image/gif\"\ttype", "type=\"${1:image/gif}\"$0"),
("type=\"image/x-png\"\ttype", "type=\"${1:image/x-png}\"$0"),
("type=\"image/x-photo-cd\"\ttype", "type=\"${1:image/x-photo-cd}\"$0"),
("type=\"image/x-MS-bmp\"\ttype", "type=\"${1:image/x-MS-bmp}\"$0"),
("type=\"image/x-rgb\"\ttype", "type=\"${1:image/x-rgb}\"$0"),
("type=\"image/x-portable-pixmap\"\ttype", "type=\"${1:image/x-portable-pixmap}\"$0"),
("type=\"image/x-portable-greymap\"\ttype", "type=\"${1:image/x-portable-greymap}\"$0"),
("type=\"image/x-portablebitmap\"\ttype", "type=\"${1:image/x-portablebitmap}\"$0"),
("deletefile\t@deletefile", "deletefile=\"$1\"$0"),
("deletefile=\"true\"\tdeletefile", "deletefile=\"${1:true}\"$0"),
("deletefile=\"false\"\tdeletefile", "deletefile=\"${1:false}\"$0"),
("file\t@file", "file=\"$1\"$0"),
("variable\t@variable", "variable=\"$1\"$0"),
("reset\t@reset", "reset=\"$1\"$0"),
("reset=\"true\"\treset", "reset=\"${1:true}\"$0"),
("reset=\"false\"\treset", "reset=\"${1:false}\"$0")
]
},
'cfcookie': {
'completions': [
("name\t@name", "name=\"$1\"$0"),
("value\t@value", "value=\"$1\"$0"),
("expires\t@expires", "expires=\"$1\"$0"),
("secure\t@secure", "secure=\"$1\"$0"),
("secure=\"true\"\tsecure", "secure=\"${1:true}\"$0"),
("secure=\"false\"\tsecure", "secure=\"${1:false}\"$0"),
("path\t@path", "path=\"$1\"$0"),
("domain\t@domain", "domain=\"$1\"$0"),
("httpOnly\t@httpOnly", "httpOnly=\"$1\"$0"),
("httpOnly=\"true\"\thttpOnly", "httpOnly=\"${1:true}\"$0"),
("httpOnly=\"false\"\thttpOnly", "httpOnly=\"${1:false}\"$0")
]
},
'cfdbinfo': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"Columns\"\ttype", "type=\"${1:Columns}\"$0"),
("type=\"DBNames\"\ttype", "type=\"${1:DBNames}\"$0"),
("type=\"Tables\"\ttype", "type=\"${1:Tables}\"$0"),
("type=\"Foreignkeys\"\ttype", "type=\"${1:Foreignkeys}\"$0"),
("type=\"Index\"\ttype", "type=\"${1:Index}\"$0"),
("type=\"Procedures\"\ttype", "type=\"${1:Procedures}\"$0"),
("type=\"Version\"\ttype", "type=\"${1:Version}\"$0"),
("datasource\t@datasource", "datasource=\"$1\"$0"),
("name\t@name", "name=\"$1\"$0"),
("dbname\t@dbname", "dbname=\"$1\"$0"),
("username\t@username", "username=\"$1\"$0"),
("password\t@password", "password=\"$1\"$0"),
("pattern\t@pattern", "pattern=\"$1\"$0"),
("table\t@table", "table=\"$1\"$0")
]
},
'cfdefaultcase': {
'completions': [
]
},
'cfdirectory': {
'completions': [
("action\t@action", "action=\"$1\"$0"),
("action=\"list\"\taction", "action=\"${1:list}\"$0"),
("action=\"create\"\taction", "action=\"${1:create}\"$0"),
("action=\"delete\"\taction", "action=\"${1:delete}\"$0"),
("action=\"rename\"\taction", "action=\"${1:rename}\"$0"),
("directory\t@directory", "directory=\"$1\"$0"),
("name\t@name", "name=\"$1\"$0"),
("filter\t@filter", "filter=\"$1\"$0"),
("mode\t@mode", "mode=\"$1\"$0"),
("sort\t@sort", "sort=\"$1\"$0"),
("sort=\"asc\"\tsort", "sort=\"${1:asc}\"$0"),
("sort=\"desc\"\tsort", "sort=\"${1:desc}\"$0"),
("newdirectory\t@newdirectory", "newdirectory=\"$1\"$0"),
("recurse\t@recurse", "recurse=\"$1\"$0"),
("recurse=\"true\"\trecurse", "recurse=\"${1:true}\"$0"),
("recurse=\"false\"\trecurse", "recurse=\"${1:false}\"$0"),
("type\t@type", "type=\"$1\"$0"),
("type=\"dir\"\ttype", "type=\"${1:dir}\"$0"),
("type=\"file\"\ttype", "type=\"${1:file}\"$0"),
("type=\"all\"\ttype", "type=\"${1:all}\"$0"),
("listinfo\t@listinfo", "listinfo=\"$1\"$0"),
("listinfo=\"name\"\tlistinfo", "listinfo=\"${1:name}\"$0"),
("listinfo=\"all\"\tlistinfo", "listinfo=\"${1:all}\"$0")
]
},
'cfdiv': {
'completions': [
("id\t@id", "id=\"$1\"$0"),
("onBindError\t@onBindError", "onBindError=\"$1\"$0"),
("bind\t@bind", "bind=\"$1\"$0"),
("tagName\t@tagName", "tagName=\"$1\"$0"),
("tagName=\"div\"\ttagName", "tagName=\"${1:div}\"$0"),
("tagName=\"span\"\ttagName", "tagName=\"${1:span}\"$0"),
("bindonload\t@bindonload", "bindonload=\"$1\"$0"),
("bindonload=\"true\"\tbindonload", "bindonload=\"${1:true}\"$0"),
("bindonload=\"false\"\tbindonload", "bindonload=\"${1:false}\"$0")
]
},
'cfdocument': {
'completions': [
("format\t@format", "format=\"$1\"$0"),
("format=\"PDF\"\tformat", "format=\"${1:PDF}\"$0"),
("format=\"FlashPaper\"\tformat", "format=\"${1:FlashPaper}\"$0"),
("filename\t@filename", "filename=\"$1\"$0"),
("localurl\t@localurl", "localurl=\"$1\"$0"),
("localurl=\"true\"\tlocalurl", "localurl=\"${1:true}\"$0"),
("localurl=\"false\"\tlocalurl", "localurl=\"${1:false}\"$0"),
("overwrite\t@overwrite", "overwrite=\"$1\"$0"),
("overwrite=\"true\"\toverwrite", "overwrite=\"${1:true}\"$0"),
("overwrite=\"false\"\toverwrite", "overwrite=\"${1:false}\"$0"),
("name\t@name", "name=\"$1\"$0"),
("pagetype\t@pagetype", "pagetype=\"$1\"$0"),
("pagetype=\"legal\"\tpagetype", "pagetype=\"${1:legal}\"$0"),
("pagetype=\"letter\"\tpagetype", "pagetype=\"${1:letter}\"$0"),
("pagetype=\"A4\"\tpagetype", "pagetype=\"${1:A4}\"$0"),
("pagetype=\"A5\"\tpagetype", "pagetype=\"${1:A5}\"$0"),
("pagetype=\"B5\"\tpagetype", "pagetype=\"${1:B5}\"$0"),
("pagetype=\"custom\"\tpagetype", "pagetype=\"${1:custom}\"$0"),
("pageheight\t@pageheight", "pageheight=\"$1\"$0"),
("pagewidth\t@pagewidth", "pagewidth=\"$1\"$0"),
("orientation\t@orientation", "orientation=\"$1\"$0"),
("orientation=\"portrait\"\torientation", "orientation=\"${1:portrait}\"$0"),
("orientation=\"landscape\"\torientation", "orientation=\"${1:landscape}\"$0"),
("margintop\t@margintop", "margintop=\"$1\"$0"),
("marginbottom\t@marginbottom", "marginbottom=\"$1\"$0"),
("marginleft\t@marginleft", "marginleft=\"$1\"$0"),
("marginright\t@marginright", "marginright=\"$1\"$0"),
("unit\t@unit", "unit=\"$1\"$0"),
("unit=\"in\"\tunit", "unit=\"${1:in}\"$0"),
("unit=\"cm\"\tunit", "unit=\"${1:cm}\"$0"),
("encryption\t@encryption", "encryption=\"$1\"$0"),
("encryption=\"128-bit\"\tencryption", "encryption=\"${1:128-bit}\"$0"),
("encryption=\"40-bit\"\tencryption", "encryption=\"${1:40-bit}\"$0"),
("encryption=\"none\"\tencryption", "encryption=\"${1:none}\"$0"),
("ownerpassword\t@ownerpassword", "ownerpassword=\"$1\"$0"),
("userpassword\t@userpassword", "userpassword=\"$1\"$0"),
("permissions\t@permissions", "permissions=\"$1\"$0"),
("permissions=\"AllowPrinting,AllowCopy,AllowScreenReaders\"\tpermissions", "permissions=\"${1:AllowPrinting,AllowCopy,AllowScreenReaders}\"$0"),
("permissions=\"AllowPrinting\"\tpermissions", "permissions=\"${1:AllowPrinting}\"$0"),
("permissions=\"AllowModifyContents\"\tpermissions", "permissions=\"${1:AllowModifyContents}\"$0"),
("permissions=\"AllowCopy\"\tpermissions", "permissions=\"${1:AllowCopy}\"$0"),
("permissions=\"AllowModifyAnnotations\"\tpermissions", "permissions=\"${1:AllowModifyAnnotations}\"$0"),
("permissions=\"AllowFillIn\"\tpermissions", "permissions=\"${1:AllowFillIn}\"$0"),
("permissions=\"AllowScreenReaders\"\tpermissions", "permissions=\"${1:AllowScreenReaders}\"$0"),
("permissions=\"AllowAssembly\"\tpermissions", "permissions=\"${1:AllowAssembly}\"$0"),
("permissions=\"AllowDegradedPrinting\"\tpermissions", "permissions=\"${1:AllowDegradedPrinting}\"$0"),
("permissions=\"AllowPrinting,AllowModifyContents,AllowCopy,AllowModifyAnnotations,AllowFillIn,AllowScreenReaders,AllowAssembly,AllowDegradedPrinting\"\tpermissions", "permissions=\"${1:AllowPrinting,AllowModifyContents,AllowCopy,AllowModifyAnnotations,AllowFillIn,AllowScreenReaders,AllowAssembly,AllowDegradedPrinting}\"$0"),
("fontembed\t@fontembed", "fontembed=\"$1\"$0"),
("fontembed=\"true\"\tfontembed", "fontembed=\"${1:true}\"$0"),
("fontembed=\"false\"\tfontembed", "fontembed=\"${1:false}\"$0"),
("backgroundvisible\t@backgroundvisible", "backgroundvisible=\"$1\"$0"),
("backgroundvisible=\"true\"\tbackgroundvisible", "backgroundvisible=\"${1:true}\"$0"),
("backgroundvisible=\"false\"\tbackgroundvisible", "backgroundvisible=\"${1:false}\"$0"),
("scale\t@scale", "scale=\"$1\"$0"),
("authpassword\t@authpassword", "authpassword=\"$1\"$0"),
("authuser\t@authuser", "authuser=\"$1\"$0"),
("bookmark\t@bookmark", "bookmark=\"$1\"$0"),
("bookmark=\"true\"\tbookmark", "bookmark=\"${1:true}\"$0"),
("bookmark=\"false\"\tbookmark", "bookmark=\"${1:false}\"$0"),
("localurl\t@localurl", "localurl=\"$1\"$0"),
("localurl=\"true\"\tlocalurl", "localurl=\"${1:true}\"$0"),
("localurl=\"false\"\tlocalurl", "localurl=\"${1:false}\"$0"),
("mimetype\t@mimetype", "mimetype=\"$1\"$0"),
("mimetype=\"text/html\"\tmimetype", "mimetype=\"${1:text/html}\"$0"),
("mimetype=\"text/plain\"\tmimetype", "mimetype=\"${1:text/plain}\"$0"),
("mimetype=\"application/xml\"\tmimetype", "mimetype=\"${1:application/xml}\"$0"),
("mimetype=\"image/bmp\"\tmimetype", "mimetype=\"${1:image/bmp}\"$0"),
("mimetype=\"image/jpeg\"\tmimetype", "mimetype=\"${1:image/jpeg}\"$0"),
("mimetype=\"image/png\"\tmimetype", "mimetype=\"${1:image/png}\"$0"),
("mimetype=\"image/gif\"\tmimetype", "mimetype=\"${1:image/gif}\"$0"),
("proxypassword\t@proxypassword", "proxypassword=\"$1\"$0"),
("proxyuser\t@proxyuser", "proxyuser=\"$1\"$0"),
("saveasname\t@saveasname", "saveasname=\"$1\"$0"),
("src\t@src", "src=\"$1\"$0"),
("srcfile\t@srcfile", "srcfile=\"$1\"$0"),
("useragent\t@useragent", "useragent=\"$1\"$0"),
("proxyhost\t@proxyhost", "proxyhost=\"$1\"$0"),
("proxyport\t@proxyport", "proxyport=\"$1\"$0"),
("tagged\t@tagged", "tagged=\"$1\"$0"),
("tagged=\"true\"\ttagged", "tagged=\"${1:true}\"$0"),
("tagged=\"false\"\ttagged", "tagged=\"${1:false}\"$0"),
("pdfa\t@pdfa", "pdfa=\"$1\"$0"),
("pdfa=\"true\"\tpdfa", "pdfa=\"${1:true}\"$0"),
("pdfa=\"false\"\tpdfa", "pdfa=\"${1:false}\"$0"),
("formFields\t@formFields", "formFields=\"$1\"$0"),
("formFields=\"true\"\tformFields", "formFields=\"${1:true}\"$0"),
("formFields=\"false\"\tformFields", "formFields=\"${1:false}\"$0"),
("formsType\t@formsType", "formsType=\"$1\"$0"),
("formsType=\"FDF\"\tformsType", "formsType=\"${1:FDF}\"$0"),
("formsType=\"PDF\"\tformsType", "formsType=\"${1:PDF}\"$0"),
("formsType=\"HTML\"\tformsType", "formsType=\"${1:HTML}\"$0"),
("formsType=\"XML\"\tformsType", "formsType=\"${1:XML}\"$0"),
("permissionsPassword\t@permissionsPassword", "permissionsPassword=\"$1\"$0"),
("openPassword\t@openPassword", "openPassword=\"$1\"$0")
]
},
'cfdocumentitem': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"pagebreak\"\ttype", "type=\"${1:pagebreak}\"$0"),
("type=\"header\"\ttype", "type=\"${1:header}\"$0"),
("type=\"footer\"\ttype", "type=\"${1:footer}\"$0"),
("evalAtPrint\t@evalAtPrint", "evalAtPrint=\"$1\"$0"),
("evalAtPrint=\"true\"\tevalAtPrint", "evalAtPrint=\"${1:true}\"$0"),
("evalAtPrint=\"false\"\tevalAtPrint", "evalAtPrint=\"${1:false}\"$0")
]
},
'cfdocumentsection': {
'completions': [
("margintop\t@margintop", "margintop=\"$1\"$0"),
("marginbottom\t@marginbottom", "marginbottom=\"$1\"$0"),
("marginleft\t@marginleft", "marginleft=\"$1\"$0"),
("marginright\t@marginright", "marginright=\"$1\"$0"),
("authpassword\t@authpassword", "authpassword=\"$1\"$0"),
("authuser\t@authuser", "authuser=\"$1\"$0"),
("mimetype\t@mimetype", "mimetype=\"$1\"$0"),
("mimetype=\"text/html\"\tmimetype", "mimetype=\"${1:text/html}\"$0"),
("mimetype=\"text/plain\"\tmimetype", "mimetype=\"${1:text/plain}\"$0"),
("mimetype=\"application/xml\"\tmimetype", "mimetype=\"${1:application/xml}\"$0"),
("mimetype=\"image/bmp\"\tmimetype", "mimetype=\"${1:image/bmp}\"$0"),
("mimetype=\"image/jpeg\"\tmimetype", "mimetype=\"${1:image/jpeg}\"$0"),
("mimetype=\"image/png\"\tmimetype", "mimetype=\"${1:image/png}\"$0"),
("mimetype=\"image/gif\"\tmimetype", "mimetype=\"${1:image/gif}\"$0"),
("name\t@name", "name=\"$1\"$0"),
("src\t@src", "src=\"$1\"$0"),
("srcfile\t@srcfile", "srcfile=\"$1\"$0"),
("useragent\t@useragent", "useragent=\"$1\"$0")
]
},
'cfdump': {
'completions': [
("var\t@var", "var=\"$1\"$0"),
("expand\t@expand", "expand=\"$1\"$0"),
("expand=\"true\"\texpand", "expand=\"${1:true}\"$0"),
("expand=\"false\"\texpand", "expand=\"${1:false}\"$0"),
("format\t@format", "format=\"$1\"$0"),
("format=\"html\"\tformat", "format=\"${1:html}\"$0"),
("format=\"text\"\tformat", "format=\"${1:text}\"$0"),
("hide\t@hide", "hide=\"$1\"$0"),
("keys\t@keys", "keys=\"$1\"$0"),
("label\t@label", "label=\"$1\"$0"),
("metainfo\t@metainfo", "metainfo=\"$1\"$0"),
("metainfo=\"true\"\tmetainfo", "metainfo=\"${1:true}\"$0"),
("metainfo=\"false\"\tmetainfo", "metainfo=\"${1:false}\"$0"),
("output\t@output", "output=\"$1\"$0"),
("output=\"browser\"\toutput", "output=\"${1:browser}\"$0"),
("output=\"console\"\toutput", "output=\"${1:console}\"$0"),
("output=\"filename\"\toutput", "output=\"${1:filename}\"$0"),
("show\t@show", "show=\"$1\"$0"),
("showUDfs\t@showUDfs", "showUDfs=\"$1\"$0"),
("showUDfs=\"true\"\tshowUDfs", "showUDfs=\"${1:true}\"$0"),
("showUDfs=\"false\"\tshowUDfs", "showUDfs=\"${1:false}\"$0"),
("top\t@top", "top=\"$1\"$0"),
("abort\t@abort", "abort=\"$1\"$0"),
("abort=\"true\"\tabort", "abort=\"${1:true}\"$0"),
("abort=\"false\"\tabort", "abort=\"${1:false}\"$0")
]
},
'cfelse': {
'completions': [
]
},
'cfelseif': {
'completions': [
]
},
'cferror': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"exception\"\ttype", "type=\"${1:exception}\"$0"),
("type=\"validation\"\ttype", "type=\"${1:validation}\"$0"),
("type=\"request\"\ttype", "type=\"${1:request}\"$0"),
("type=\"monitor\"\ttype", "type=\"${1:monitor}\"$0"),
("template\t@template", "template=\"$1\"$0"),
("mailto\t@mailto", "mailto=\"$1\"$0"),
("exception\t@exception", "exception=\"$1\"$0"),
("exception=\"any\"\texception", "exception=\"${1:any}\"$0"),
("exception=\"application\"\texception", "exception=\"${1:application}\"$0"),
("exception=\"database\"\texception", "exception=\"${1:database}\"$0"),
("exception=\"template\"\texception", "exception=\"${1:template}\"$0"),
("exception=\"security\"\texception", "exception=\"${1:security}\"$0"),
("exception=\"object\"\texception", "exception=\"${1:object}\"$0"),
("exception=\"missinginclude\"\texception", "exception=\"${1:missinginclude}\"$0"),
("exception=\"expression\"\texception", "exception=\"${1:expression}\"$0"),
("exception=\"lock\"\texception", "exception=\"${1:lock}\"$0"),
("exception=\"custom_type\"\texception", "exception=\"${1:custom_type}\"$0")
]
},
'cfexecute': {
'completions': [
("name\t@name", "name=\"$1\"$0"),
("arguments\t@arguments", "arguments=\"$1\"$0"),
("outputfile\t@outputfile", "outputfile=\"$1\"$0"),
("variable\t@variable", "variable=\"$1\"$0"),
("timeout\t@timeout", "timeout=\"$1\"$0"),
("errorVariable\t@errorVariable", "errorVariable=\"$1\"$0"),
("errorFile\t@errorFile", "errorFile=\"$1\"$0")
]
},
'cfexit': {
'completions': [
("method\t@method", "method=\"$1\"$0"),
("method=\"exittag\"\tmethod", "method=\"${1:exittag}\"$0"),
("method=\"exittemplate\"\tmethod", "method=\"${1:exittemplate}\"$0"),
("method=\"loop\"\tmethod", "method=\"${1:loop}\"$0")
]
},
'cffile': {
'completions': [
("action\t@action", "action=\"$1\"$0"),
("action=\"append\"\taction", "action=\"${1:append}\"$0"),
("action=\"copy\"\taction", "action=\"${1:copy}\"$0"),
("action=\"delete\"\taction", "action=\"${1:delete}\"$0"),
("action=\"move\"\taction", "action=\"${1:move}\"$0"),
("action=\"read\"\taction", "action=\"${1:read}\"$0"),
("action=\"readbinary\"\taction", "action=\"${1:readbinary}\"$0"),
("action=\"rename\"\taction", "action=\"${1:rename}\"$0"),
("action=\"upload\"\taction", "action=\"${1:upload}\"$0"),
("action=\"uploadall\"\taction", "action=\"${1:uploadall}\"$0"),
("action=\"write\"\taction", "action=\"${1:write}\"$0"),
("file\t@file", "file=\"$1\"$0"),
("mode\t@mode", "mode=\"$1\"$0"),
("output\t@output", "output=\"$1\"$0"),
("addnewline\t@addnewline", "addnewline=\"$1\"$0"),
("addnewline=\"true\"\taddnewline", "addnewline=\"${1:true}\"$0"),
("addnewline=\"false\"\taddnewline", "addnewline=\"${1:false}\"$0"),
("attributes\t@attributes", "attributes=\"$1\"$0"),
("attributes=\"readonly\"\tattributes", "attributes=\"${1:readonly}\"$0"),
("attributes=\"hidden\"\tattributes", "attributes=\"${1:hidden}\"$0"),
("attributes=\"normal\"\tattributes", "attributes=\"${1:normal}\"$0"),
("attributes=\"system\"\tattributes", "attributes=\"${1:system}\"$0"),
("attributes=\"temporary\"\tattributes", "attributes=\"${1:temporary}\"$0"),
("charset\t@charset", "charset=\"$1\"$0"),
("charset=\"utf-8\"\tcharset", "charset=\"${1:utf-8}\"$0"),
("charset=\"iso-8859-1\"\tcharset", "charset=\"${1:iso-8859-1}\"$0"),
("charset=\"windows-1252\"\tcharset", "charset=\"${1:windows-1252}\"$0"),
("charset=\"us-ascii\"\tcharset", "charset=\"${1:us-ascii}\"$0"),
("charset=\"shift_jis\"\tcharset", "charset=\"${1:shift_jis}\"$0"),
("charset=\"iso-2022-jp\"\tcharset", "charset=\"${1:iso-2022-jp}\"$0"),
("charset=\"euc-jp\"\tcharset", "charset=\"${1:euc-jp}\"$0"),
("charset=\"euc-kr\"\tcharset", "charset=\"${1:euc-kr}\"$0"),
("charset=\"big5\"\tcharset", "charset=\"${1:big5}\"$0"),
("charset=\"euc-cn\"\tcharset", "charset=\"${1:euc-cn}\"$0"),
("charset=\"utf-16\"\tcharset", "charset=\"${1:utf-16}\"$0"),
("source\t@source", "source=\"$1\"$0"),
("destination\t@destination", "destination=\"$1\"$0"),
("variable\t@variable", "variable=\"$1\"$0"),
("filefield\t@filefield", "filefield=\"$1\"$0"),
("nameconflict\t@nameconflict", "nameconflict=\"$1\"$0"),
("nameconflict=\"error\"\tnameconflict", "nameconflict=\"${1:error}\"$0"),
("nameconflict=\"skip\"\tnameconflict", "nameconflict=\"${1:skip}\"$0"),
("nameconflict=\"overwrite\"\tnameconflict", "nameconflict=\"${1:overwrite}\"$0"),
("nameconflict=\"makeunique\"\tnameconflict", "nameconflict=\"${1:makeunique}\"$0"),
("accept\t@accept", "accept=\"$1\"$0"),
("result\t@result", "result=\"$1\"$0"),
("fixnewline\t@fixnewline", "fixnewline=\"$1\"$0"),
("fixnewline=\"true\"\tfixnewline", "fixnewline=\"${1:true}\"$0"),
("fixnewline=\"false\"\tfixnewline", "fixnewline=\"${1:false}\"$0")
]
},
'cfflush': {
'completions': [
("interval\t@interval", "interval=\"$1\"$0")
]
},
'cfform': {
'completions': [
("name\t@name", "name=\"$1\"$0"),
("action\t@action", "action=\"$1\"$0"),
("method\t@method", "method=\"$1\"$0"),
("method=\"post\"\tmethod", "method=\"${1:post}\"$0"),
("method=\"get\"\tmethod", "method=\"${1:get}\"$0"),
("format\t@format", "format=\"$1\"$0"),
("format=\"html\"\tformat", "format=\"${1:html}\"$0"),
("format=\"flash\"\tformat", "format=\"${1:flash}\"$0"),
("format=\"xml\"\tformat", "format=\"${1:xml}\"$0"),
("skin\t@skin", "skin=\"$1\"$0"),
("skin=\"haloSilver\"\tskin", "skin=\"${1:haloSilver}\"$0"),
("skin=\"haloBlue\"\tskin", "skin=\"${1:haloBlue}\"$0"),
("skin=\"haloGreen\"\tskin", "skin=\"${1:haloGreen}\"$0"),
("skin=\"haloOrange\"\tskin", "skin=\"${1:haloOrange}\"$0"),
("skin=\"beige\"\tskin", "skin=\"${1:beige}\"$0"),
("skin=\"blue\"\tskin", "skin=\"${1:blue}\"$0"),
("skin=\"bluegray\"\tskin", "skin=\"${1:bluegray}\"$0"),
("skin=\"lightgray\"\tskin", "skin=\"${1:lightgray}\"$0"),
("skin=\"red\"\tskin", "skin=\"${1:red}\"$0"),
("skin=\"silver\"\tskin", "skin=\"${1:silver}\"$0"),
("skin=\"none\"\tskin", "skin=\"${1:none}\"$0"),
("skin=\"default\"\tskin", "skin=\"${1:default}\"$0"),
("skin=\"basic\"\tskin", "skin=\"${1:basic}\"$0"),
("skin=\"basiccss\"\tskin", "skin=\"${1:basiccss}\"$0"),
("preservedata\t@preservedata", "preservedata=\"$1\"$0"),
("preservedata=\"true\"\tpreservedata", "preservedata=\"${1:true}\"$0"),
("preservedata=\"false\"\tpreservedata", "preservedata=\"${1:false}\"$0"),
("onload\t@onload", "onload=\"$1\"$0"),
("onsubmit\t@onsubmit", "onsubmit=\"$1\"$0"),
("codebase\t@codebase", "codebase=\"$1\"$0"),
("archive\t@archive", "archive=\"$1\"$0"),
("height\t@height", "height=\"$1\"$0"),
("width\t@width", "width=\"$1\"$0"),
("onerror\t@onerror", "onerror=\"$1\"$0"),
("wmode\t@wmode", "wmode=\"$1\"$0"),
("wmode=\"window\"\twmode", "wmode=\"${1:window}\"$0"),
("wmode=\"transparent\"\twmode", "wmode=\"${1:transparent}\"$0"),
("wmode=\"opaque\"\twmode", "wmode=\"${1:opaque}\"$0"),
("accessible\t@accessible", "accessible=\"$1\"$0"),
("accessible=\"true\"\taccessible", "accessible=\"${1:true}\"$0"),
("accessible=\"false\"\taccessible", "accessible=\"${1:false}\"$0"),
("preloader\t@preloader", "preloader=\"$1\"$0"),
("preloader=\"true\"\tpreloader", "preloader=\"${1:true}\"$0"),
("preloader=\"false\"\tpreloader", "preloader=\"${1:false}\"$0"),
("timeout\t@timeout", "timeout=\"$1\"$0"),
("scriptsrc\t@scriptsrc", "scriptsrc=\"$1\"$0"),
("style\t@style", "style=\"$1\"$0"),
("onreset\t@onreset", "onreset=\"$1\"$0"),
("id\t@id", "id=\"$1\"$0"),
("target\t@target", "target=\"$1\"$0"),
("passthrough\t@passthrough", "passthrough=\"$1\"$0"),
("onsuccess\t@onsuccess", "onsuccess=\"$1\"$0")
]
},
'cfformgroup': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"horizontal\"\ttype", "type=\"${1:horizontal}\"$0"),
("type=\"vertical\"\ttype", "type=\"${1:vertical}\"$0"),
("type=\"fieldset\"\ttype", "type=\"${1:fieldset}\"$0"),
("type=\"repeater\"\ttype", "type=\"${1:repeater}\"$0"),
("type=\"horizontal\"\ttype", "type=\"${1:horizontal}\"$0"),
("type=\"vertical\"\ttype", "type=\"${1:vertical}\"$0"),
("type=\"hbox\"\ttype", "type=\"${1:hbox}\"$0"),
("type=\"vbox\"\ttype", "type=\"${1:vbox}\"$0"),
("type=\"hdividedbox\"\ttype", "type=\"${1:hdividedbox}\"$0"),
("type=\"vdividedbox\"\ttype", "type=\"${1:vdividedbox}\"$0"),
("type=\"panel\"\ttype", "type=\"${1:panel}\"$0"),
("type=\"tile\"\ttype", "type=\"${1:tile}\"$0"),
("type=\"accordion\"\ttype", "type=\"${1:accordion}\"$0"),
("type=\"tabnavigator\"\ttype", "type=\"${1:tabnavigator}\"$0"),
("type=\"page\"\ttype", "type=\"${1:page}\"$0"),
("query\t@query", "query=\"$1\"$0"),
("startrow\t@startrow", "startrow=\"$1\"$0"),
("maxrows\t@maxrows", "maxrows=\"$1\"$0"),
("label\t@label", "label=\"$1\"$0"),
("id\t@id", "id=\"$1\"$0"),
("style\t@style", "style=\"$1\"$0"),
("selectedindex\t@selectedindex", "selectedindex=\"$1\"$0"),
("width\t@width", "width=\"$1\"$0"),
("height\t@height", "height=\"$1\"$0"),
("enabled\t@enabled", "enabled=\"$1\"$0"),
("enabled=\"true\"\tenabled", "enabled=\"${1:true}\"$0"),
("enabled=\"false\"\tenabled", "enabled=\"${1:false}\"$0"),
("visible\t@visible", "visible=\"$1\"$0"),
("visible=\"true\"\tvisible", "visible=\"${1:true}\"$0"),
("visible=\"false\"\tvisible", "visible=\"${1:false}\"$0"),
("onchange\t@onchange", "onchange=\"$1\"$0"),
("tooltip\t@tooltip", "tooltip=\"$1\"$0")
]
},
'cfformitem': {
'completions': [
("type\t@type", "type=\"$1\"$0"),
("type=\"html\"\ttype", "type=\"${1:html}\"$0"),
("type=\"text\"\ttype", "type=\"${1:text}\"$0"),
("type=\"script\"\ttype", "type=\"${1:script}\"$0"),
("type=\"spacer\"\ttype", "type=\"${1:spacer}\"$0"),
("type=\"hrule\"\ttype", "type=\"${1:hrule}\"$0"),
("type=\"vrule\"\ttype", "type=\"${1:vrule}\"$0"),
("style\t@style", "style=\"$1\"$0"),
("width\t@width", "width=\"$1\"$0"),
("height\t@height", "height=\"$1\"$0"),
("enabled\t@enabled", "enabled=\"$1\"$0"),
("enabled=\"true\"\tenabled", "enabled=\"${1:true}\"$0"),
("enabled=\"false\"\tenabled", "enabled=\"${1:false}\"$0"),