-
Notifications
You must be signed in to change notification settings - Fork 379
/
udl-list.json
2979 lines (2979 loc) · 123 KB
/
udl-list.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "npp-UDL-list",
"version": "1.0",
"UDLs": [
{
"id-name": "3GL_byDrezzzz",
"display-name": "3GL",
"version": "Tue, 08 Dec 2009 20:46:14 GMT",
"repository": "",
"description": "3GL",
"author": "drezzzzz <mailto:[email protected]>"
},
{
"id-name": "6502Assembly_byCarlMyerholtz",
"display-name": "6502 Assembly",
"version": "Sun, 8 Nov 2020 22:01:00 GMT",
"repository": "",
"description": "ASM for 6502",
"author": "Carl Myerholtz W9OMS <mailto:[email protected]>"
},
{
"id-name": "68K_Assembly_byAmix73",
"display-name": "68k Assembly",
"version": "Tue, 29 May 2012 16:04:33 GMT",
"repository": "",
"description": "68k Assembly",
"author": "Amix 73 <mailto:[email protected]>"
},
{
"id-name": "ABAP_by_ChristianKosasih",
"display-name": "ABAP (by Christan Kosasih in 2012)",
"version": "Wed, 29 Feb 2012 09:05:20 GMT",
"repository": "",
"description": "ABAP",
"author": "Christian Kosasih <mailto:[email protected]>"
},
{
"id-name": "ABAP_by_MithunKumar",
"display-name": "ABAP (by MithunKumar in 2021)",
"version": "Wed, 8 Sep 2021 12:00:00 GMT",
"repository": "",
"description": "ABAP",
"author": "Mithun Kumar"
},
{
"id-name": "ABAQUS_6.13-5_ObsidianTheme",
"display-name": "ABAQUS_6.13-5",
"version": "2020-Dez-09",
"sample": "ABAQUS_6.13-5_ObsidianTheme.inp",
"repository": "",
"description": "ABAQUS CAE engineering simulation software",
"author": "https://github.com/dfens83"
},
{
"id-name": "Abaqus_byMarianMeinhard",
"display-name": "Abaqus",
"version": "Sat, 26 Nov 2011 15:56:55 GMT",
"repository": "",
"description": "Abaqus",
"author": "Marian Meinhard <mailto:[email protected]>"
},
{
"id-name": "Ada202x_byspr93",
"display-name": "Ada (202x)",
"version": "2021-02-04",
"repository": "",
"description": "User Defined Language for Ada 202x",
"author": "spr93"
},
{
"id-name": "AgenaUDL",
"display-name": "Agena",
"version": "v1.00",
"repository": "https://github.com/AmitaiF/Agena-UDL-for-notepad-plus-plus",
"description": "Agena syntax highlighting for Notepad++.",
"author": "Amitai Farber",
"homepage": "https://github.com/AmitaiF"
},
{
"id-name": "Alloy_by-lausdahl",
"display-name": "Alloy",
"version": "Thu, 27 Dec 2012 05:53:49 GMT",
"repository": "http://lausdahl.users.sourceforge.net/Notepadpp_Alloy_language_style.zip",
"description": "Alloy",
"author": "lausdahl <mailto:[email protected]>"
},
{
"id-name": "Amiga_E_bydmcoles",
"display-name": "Amiga_E",
"autoCompletion": true,
"version": "Fri, 2 Sep 2022 15:53:00 GMT",
"sample": "Amiga_E_bydmcoles.e",
"repository": "https://raw.githubusercontent.com/dmcoles/userDefinedLanguages/master/autoCompletions/Amiga_E_bydmcoles.xml",
"description": "Amiga E syntax highlighting",
"author": "dmcoles",
"homepage": "https://github.com/dmcoles"
},
{
"id-name": "Amiga_E_dark_bydmcoles",
"display-name": "Amiga_E_dark",
"autoCompletion": true,
"version": "Fri, 2 Sep 2022 15:53:00 GMT",
"sample": "Amiga_E_dark_bydmcoles.e",
"repository": "https://raw.githubusercontent.com/dmcoles/userDefinedLanguages/master/autoCompletions/Amiga_E_dark_bydmcoles.xml",
"description": "Amiga E syntax highlighting (dark version)",
"author": "dmcoles",
"homepage": "https://github.com/dmcoles"
},
{
"id-name": "AMPscript_byPatricioSapir",
"display-name": "AMP Script",
"version": "Sat, 12 May 2012 11:21:26 GMT",
"repository": "",
"description": "AMP Script",
"author": "Patricio Sapir <mailto:[email protected]>"
},
{
"id-name": "AMXX_1.8.3_OciXCrom",
"display-name": "AMXX 1.8.3",
"version": "amxx:5154, reapi:150",
"repository": "https://github.com/OciXCrom/AMXXNPPSH",
"description": "Notepad++ syntax highlighting for AMXX and ReAPI",
"author": "OciXCrom",
"homepage": "https://github.com/OciXCrom"
},
{
"id-name": "ansible-play",
"display-name": "ansible-play",
"version": "1.0",
"repository": "",
"description": "Ansible play",
"author": "kk-at-redhat"
},
{
"id-name": "ansible-play_DM",
"display-name": "ansible-play (dark mode)",
"version": "1.0",
"repository": "",
"description": "Ansible play",
"author": "kk-at-redhat"
},
{
"id-name": "ANSYS_byEmiklo",
"display-name": "ANSYS",
"version": "Sun, 19 Dec 2010 22:06:05 GMT",
"repository": "",
"description": "ANSYS",
"author": "emiklo <mailto:[email protected]>"
},
{
"id-name": "AOS-CX-10.09_byMaiKiMax94",
"display-name": "AOS-CX 10.09",
"version": "2022-Oct-13",
"repository": "",
"description": "AOS-CX 10.09 for Aruba 6000 Switchs Series",
"author": "MaiKiMax94"
},
{
"id-name": "Apache2_by_AlfonsoEncisoP_ThemeDefault",
"display-name": "Apache conf",
"version": "Tue, 13 Apr 2010 17:12:29 GMT",
"repository": "",
"description": "Apache conf",
"author": "Alfonso Enciso Patiño <mailto:[email protected]>"
},
{
"id-name": "Apache2_by_IsaacSalgueiro_ThemeZenBurn",
"display-name": "Apache conf (ZenBurn theme)",
"version": "Fri, 23 Aug 2013 09:39:26 GMT",
"repository": "",
"description": "Apache conf (ZenBurn theme)",
"author": "Isaac Salgueiro <mailto:[email protected]>"
},
{
"id-name": "Arbortext_byDjenandjijg",
"display-name": "Arbortext Command Language",
"version": "Sun, 23 Sep 2012 12:54:57 GMT",
"repository": "",
"description": "Arbortext Command Language",
"author": "Jean-Grégoire Djénandji <mailto:[email protected]>"
},
{
"id-name": "arc86_h2fooko",
"display-name": "arc86",
"version": "Tue, 22 Jun 2010 07:04:06 GMT",
"repository": "",
"description": "arc86",
"author": "h2fooko <mailto:[email protected]>"
},
{
"id-name": "ArcInfoAML_byJakobNisell",
"display-name": "ArcInfo AML",
"version": "Tue, 14 Sep 2010 17:38:04 GMT",
"repository": "",
"description": "ArcInfo AML",
"author": "Jakob Nisell <mailto:[email protected]>"
},
{
"id-name": "AriaTemplates_themeBespin_byAriaTemplates",
"display-name": "Aria templates (Bespin Theme)",
"version": "Sun, 26 Jan 2020 22:42:17 GMT",
"repository": "https://raw.githubusercontent.com/ariatemplates/editors-tools/master/notepad%2B%2B/n%2B%2Bariatemplates-bespin.udl.xml",
"description": "Aria templates",
"author": "Aria templates team <mailto:[email protected]>",
"homepage": "https://github.com/ariatemplates/editors-tools/tree/master/notepad%2B%2B"
},
{
"id-name": "AriaTemplates_themeStandard_byAriaTemplates",
"display-name": "Aria templates",
"version": "Sun, 26 Jan 2020 22:42:17 GMT",
"repository": "https://raw.githubusercontent.com/ariatemplates/editors-tools/master/notepad%2B%2B/n%2B%2Bariatemplates-standard.udl.xml",
"description": "Aria templates",
"author": "Aria templates team <mailto:[email protected]>",
"homepage": "https://github.com/ariatemplates/editors-tools/tree/master/notepad%2B%2B"
},
{
"id-name": "arm32-gas-assembly.udl",
"display-name": "arm32 gas assembly",
"version": "20231203",
"repository": "",
"description": "Assembly for arm32, gas variant (for light themes)",
"author": "mcesar-rlacruz"
},
{
"id-name": "arm32-gas-assembly_DM.udl",
"display-name": "arm32 gas assembly (dark)",
"version": "20231203",
"repository": "",
"description": "Assembly for arm32, gas variant (for dark themes)",
"author": "mcesar-rlacruz"
},
{
"id-name": "ArubaOS-16.10_byMaiKiMax94",
"display-name": "ArubaOS 16.10",
"version": "2022-Oct-09",
"repository": "",
"description": "ArubaOS 16.10 for HPE-Aruba Switchs",
"author": "MaiKiMax94"
},
{
"id-name": "AsciiDocWebPage_byEduardoSantana",
"display-name": "asciidoc (web page)",
"version": "Sun, 26 Jan 2020 22:42:17 GMT",
"repository": "https://raw.githubusercontent.com/edusantana/asciidoc-highlight/master/notepad%2B%2B/userDefineLang.xml",
"description": "asciidoc (web page)",
"author": "Eduardo Santana <mailto:[email protected]>",
"homepage": "https://github.com/edusantana/asciidoc-highlight/"
},
{
"id-name": "AsmForAtmelAvr_byBrianTullio",
"display-name": "ASM for Atmel AVR",
"version": "Thu, 07 Jan 2010 00:39:07 GMT",
"repository": "",
"description": "ASM for Atmel AVR",
"author": "Brian Tullio <mailto:[email protected]>"
},
{
"id-name": "AsmForAvr2_byArtemZorin",
"display-name": "ASM for AVR 2",
"version": "Wed, 02 Feb 2011 21:10:08 GMT",
"repository": "",
"description": "ASM for AVR 2",
"author": "Artem Zorin <mailto:[email protected]>"
},
{
"id-name": "AsmForIntel8051_byJackMaynard",
"display-name": "ASM for Intel 8051",
"version": "Tue, 31 May 2011 07:12:47 GMT",
"repository": "",
"description": "ASM for Intel 8051",
"author": "Jack Maynard <mailto:[email protected]>"
},
{
"id-name": "AsmForMIPS-R2000_byJoaoRicardoRosa",
"display-name": "ASM for MIPS R2000",
"version": "Thu, 26 Jan 2012 08:32:54 GMT",
"sample": "AsmForMIPS-R2000_byJoãoRicardoRosa.s",
"repository": "",
"description": "ASM for MIPS R2000",
"author": "Jooo Ricardo Rosa <mailto:[email protected]>"
},
{
"id-name": "AsmForPdp11_s11_byElisherer",
"display-name": "ASM for PDP-11",
"version": "Thu, 31 Dec 2009 21:53:35 GMT",
"repository": "",
"description": "ASM for PDP-11",
"author": "elisherer <mailto:[email protected]>"
},
{
"id-name": "AsmForPIC16F628A_byIceborg",
"display-name": "ASM for PIC16F628A",
"version": "Wed, 02 Feb 2011 01:02:54 GMT",
"repository": "",
"description": "ASM for PIC16F628A",
"author": "iceborg <mailto:[email protected]>"
},
{
"id-name": "asmMips64_byRyanKane",
"display-name": "ASM for MIPS64",
"version": "Sun, 22 Sep 2013 18:22:20 GMT",
"repository": "",
"description": "ASM for MIPS64",
"author": "Ryan Kane <mailto:[email protected]>"
},
{
"id-name": "AsteriskConfig_byBrotherGabriel-Marie",
"display-name": "Asterisk Config",
"version": "Sun, 24 Nov 2013 13:19:33 GMT",
"repository": "",
"description": "Asterisk Config",
"author": "Brother Gabriel-Marie <mailto:[email protected]>"
},
{
"id-name": "AsteriskExtensionLanguage-AEL_by-eyzel",
"display-name": "Asterisk Extension Language (AEL)",
"version": "Sun, 26 Jan 2020 22:42:17 GMT",
"repository": "http://sourceforge.net/projects/aelfornotepad/files/userDefineLang_AEL.xml/download",
"description": "Asterisk Extension Language (AEL)",
"author": "eyzel <mailto:[email protected]>"
},
{
"id-name": "AsteriskSys_byBrotherGabriel-Marie",
"display-name": "Asterisk Sys Config",
"version": "Sun, 24 Nov 2013 13:19:33 GMT",
"repository": "",
"description": "Asterisk Sys Config",
"author": "Brother Gabriel-Marie <mailto:[email protected]>"
},
{
"id-name": "AuditCommandLanguage-ACL_byJChen",
"display-name": "ACL (Audit Command Language)",
"version": "Sun, 26 Jan 2020 22:42:16 GMT",
"repository": "http://sourceforge.net/projects/acludl/files/userDefineLang_acl.xml/download",
"description": "ACL (Audit Command Language)",
"author": "JChen <mailto:[email protected]>"
},
{
"id-name": "AutoCAD-LPSS.udl",
"display-name": "AutoCAD-LPSS",
"version": "2020-Jan-21",
"sample": "AutoCAD-LPSS.udl.lin",
"repository": "",
"description": "User Defined Lang for AutoCAD Linetype (*.lin), Hatch Pattern (*.pat), Script (*.scr) and Shape (*.shp) files. Can be used with the AutoCAD-LPSS.xml file for Auto-Completion.",
"author": "Rusi Dimitrov",
"homepage": "https://github.com/rddim/npp-udl"
},
{
"id-name": "AutoHotKey_byBrotherGabriel-Marie",
"display-name": "AutoHotKey",
"version": "Thu, 21 Sep 2023 10:26 GMT",
"repository": "",
"description": "AutoHotKey",
"author": "Brother Gabriel-Marie <mailto:[email protected]>; edited by Snowman-25"
},
{
"id-name": "AutoLISPforAutoCAD_MichaelPuckett",
"display-name": "AutoLISP for AutoCAD",
"version": "Thu, 01 Dec 2011 08:50:16 GMT",
"repository": "",
"description": "AutoLISP for AutoCAD",
"author": "Michael Puckett <mailto:[email protected]>"
},
{
"id-name": "AVISynth_byRustamMusa",
"display-name": "AVISynth",
"version": "Sun, 03 Feb 2013 10:32:25 GMT",
"repository": "",
"description": "AVISynth",
"author": "Муса-Ахунов Рустам <mailto:[email protected]>"
},
{
"id-name": "Awk_byVitaliyDovgan",
"display-name": "AWK",
"version": "Mon, 16 Apr 2007 07:57:04 GMT",
"repository": "",
"description": "AWK",
"author": "Vitaliy Dovgan <mailto:[email protected]>"
},
{
"id-name": "aya.udl",
"display-name": "Aya",
"version": "2021-06-03",
"repository": "https://github.com/Taromati2/aya-udl-xml",
"description": "UDL for Aya/Yaya SHIORI",
"author": "steve02081504",
"homepage": "https://github.com/Taromati2/aya-udl-xml"
},
{
"id-name": "BB_Code_by_Efrit",
"display-name": "BB Code",
"version": "2020-11-16",
"repository": "",
"description": "User Defined Language for BB Codes used by web forums",
"author": "Efrit",
"homepage": "https://github.com/Efrit"
},
{
"id-name": "bibTeX2_by_WilliamDVolterman",
"display-name": "bibTeX",
"version": "Thu, 26 Aug 2010 20:28:16 GMT",
"repository": "",
"description": "bibTeX",
"author": "William D. Volterman <mailto:[email protected]>"
},
{
"id-name": "BIND-Config_by_JeremyLaidman",
"display-name": "BIND Config",
"version": "Thu, 11 Nov 2010 13:29:00 GMT",
"repository": "",
"description": "BIND Config",
"author": "Jeremy Laidman <mailto:[email protected]>"
},
{
"id-name": "CadenceSkill_byEvanShultz",
"display-name": "Cadence SKILL",
"version": "Sat, 24 Sep 2011 13:14:51 GMT",
"repository": "",
"description": "Cadence SKILL",
"author": "Evan Shultz <mailto:[email protected]>"
},
{
"id-name": "c-al_by-ccris",
"display-name": "C/AL",
"version": "Wed, 21 Sep 2011 06:25:45 GMT",
"repository": "",
"description": "C/AL",
"author": "cchris <mailto:[email protected]>"
},
{
"id-name": "Cesil_byMajor25",
"display-name": "Cesil",
"version": "Fri, 20 Aug 2010 16:44:05 GMT",
"repository": "",
"description": "Cesil",
"author": "major25 <mailto:[email protected]>"
},
{
"id-name": "Chilli_byCliveToms",
"display-name": "Chilli",
"version": "Wed, 25 Aug 2010 18:00:30 GMT",
"repository": "",
"description": "Chilli",
"author": "Clive Toms <mailto:[email protected]>"
},
{
"id-name": "CIL_ECMA-335_byEdJobe",
"display-name": "CIL for .NET",
"version": "Tue, 05 Feb 2013 22:37:37 GMT",
"repository": "",
"description": "CIL for .NET",
"author": "Ed Jobe <mailto:[email protected]>"
},
{
"id-name": "Cisco_ACL_byChristophWempe",
"display-name": "Cisco ACL",
"version": "Fri, 17 Sep 2010 13:36:47 GMT",
"repository": "",
"description": "Cisco ACL",
"author": "Christoph Wempe <mailto:[email protected]>"
},
{
"id-name": "Cisco_ASA_by_NickBettison",
"display-name": "Cisco ASA",
"version": "Fri, 17 Sep 2010 13:40:51 GMT",
"repository": "",
"description": "Cisco ASA",
"author": "Nick Bettison",
"homepage": "http://www.linickx.com/contact"
},
{
"id-name": "Cisco_COS_byChristophWempe",
"display-name": "Cisco COS",
"version": "Fri, 17 Sep 2010 13:35:42 GMT",
"repository": "",
"description": "Cisco COS",
"author": "Christoph Wempe <mailto:[email protected]>"
},
{
"id-name": "Cisco_IOS_byLuisPisco",
"display-name": "Cisco IOS",
"version": "Sat, 08 Dec 2012 17:33:14 GMT",
"repository": "",
"description": "Cisco IOS",
"author": "Luis Pisco <mailto:[email protected]>"
},
{
"id-name": "Cisco_IOS_Darkmode_by_YlloNieR",
"display-name": "Cisco IOS Darkmode",
"version": "2022-Jul-16",
"repository": "",
"description": "Cisco IOS Darkmode",
"author": "YlloNieR"
},
{
"id-name": "clojure_byDanielCotter",
"display-name": "Clojure",
"version": "Sun, 09 Sep 2012 13:07:49 GMT",
"repository": "",
"description": "Clojure",
"author": "Daniel Cotter <mailto:[email protected]>"
},
{
"id-name": "CMTS_byTiGeRNet",
"display-name": "CMTS",
"version": "Sat, 23 Jul 2011 21:34:50 GMT",
"repository": "",
"description": "CMTS",
"author": "TiGeRNeT <mailto:[email protected]>"
},
{
"id-name": "cobol_2_byAlainChappuis",
"display-name": "Cobol (v2)",
"version": "Wed, 25 Jul 2007 13:08:27 GMT",
"repository": "",
"description": "Cobol (v2)",
"author": "Alain Chappuis <mailto:[email protected]>"
},
{
"id-name": "CoCoA_5_byHyperSpeeed",
"display-name": "CoCoA 5",
"version": "Sat, 25 Dec 2021 22:28:42 GMT",
"repository": "",
"description": "CoCoA 5",
"author": "Nico Mexis <mailto:[email protected]>"
},
{
"id-name": "CoCoA_5_Dark_byHyperSpeeed",
"display-name": "CoCoA 5 (Dark)",
"version": "Sat, 25 Dec 2021 22:28:42 GMT",
"repository": "",
"description": "CoCoA 5 (Dark)",
"author": "Nico Mexis <mailto:[email protected]>"
},
{
"id-name": "CoffeeScript_by-blakmatrix",
"display-name": "CoffeeScript",
"version": "Sun, 26 Jan 2020 22:39:13 GMT",
"repository": "https://raw.githubusercontent.com/blakmatrix/CoffeeScript_notepad_UDL/master/CoffeeScript.xml",
"description": "CoffeeScript",
"author": "blakmatrix <mailto:[email protected]>",
"homepage": "https://github.com/blakmatrix/CoffeeScript_notepad_UDL"
},
{
"id-name": "ColdfusionCF9_bySpenster",
"display-name": "Coldfusion",
"version": "Fri, 04 Jun 2010 07:17:33 GMT",
"repository": "",
"description": "Coldfusion",
"author": "spenster <mailto:[email protected]>"
},
{
"id-name": "ConfigIni_byThomasAglassinger",
"display-name": "Config (.cfg and .ini files)",
"version": "Tue, 17 Sep 2013 20:29:55 GMT",
"repository": "",
"description": "Config (.cfg and .ini files)",
"author": "Thomas Aglassinger <mailto:[email protected]>"
},
{
"id-name": "consize_byCarstenEllwein",
"display-name": "Consize",
"version": "Fri, 01 Nov 2013 18:35:28 GMT",
"repository": "",
"description": "Consize",
"author": "Carsten Ellwein <mailto:[email protected]>"
},
{
"id-name": "CS2_CFG_by_Nightcr4wler",
"display-name": "CS2 Config",
"version": "1.0.0",
"repository": "",
"description": "Counter-Strike 2 Config Language. Console Commands and Variables Syntax Highlighting",
"author": "Nightcr4wler"
},
{
"id-name": "csound_byNikitaMozziconin",
"display-name": "csound",
"version": "Sat, 25 May 2013 10:18:53 GMT",
"repository": "",
"description": "csound",
"author": "Nikita Mozziconin <mailto:[email protected]>"
},
{
"id-name": "CUDA_byWeihangZhu",
"display-name": "CUDA",
"version": "Mon, 06 Sep 2010 19:25:10 GMT",
"repository": "",
"description": "CUDA",
"author": "Weihang Zhu"
},
{
"id-name": "CueSheet_byDavidR",
"display-name": "Cue-sheet",
"version": "Sat, 13 Apr 2013 12:26:53 GMT",
"repository": "",
"description": "Cue-sheet",
"author": "David R <mailto:[email protected]>"
},
{
"id-name": "Curv_byTimAyres",
"display-name": "Curv",
"version": "1.0.0",
"repository": "",
"description": "Curv Language Syntax Highlighting",
"author": "Tim Ayres",
"homepage": "https://codeberg.org/3DLirious/curv"
},
{
"id-name": "Dart_by_thiagovscoelho",
"display-name": "Dart",
"version": "Fri Apr 21 08:09:59 2023 GMT",
"repository": "",
"description": "Dart",
"author": "Thiago Coelho <mailto:[email protected]>"
},
{
"id-name": "DatcomIO_by_StuartBowman",
"display-name": "Datcom (input and output)",
"version": "Mon, 04 Jan 2010 19:40:11 GMT",
"repository": "",
"description": "Datcom (input and output)",
"author": "Stuart Bowman <mailto:[email protected]>"
},
{
"id-name": "DAX_bySaschaKasper",
"display-name": "DAX",
"autoCompletion": true,
"version": "3.07",
"repository": "",
"description": "DAX Data Visualization (Microsoft Power BI)",
"author": "Sascha D. Kasper",
"homepage": "https://sascha-kasper.com/dax-syntax-highlighting-for-notepad/"
},
{
"id-name": "dBASEPlus_LightTheme_byLycanThrope",
"display-name": "dBASEPlus_LightTheme",
"version": "2024-Feb-03",
"repository": "",
"description": "dBASE Plus (Light Theme)",
"author": "Lycan Thrope",
"autoCompletion": "dBASEPlus_LightTheme",
"functionList": "dbaseplus",
"sample": "dBASEPlus_byLycanThrope.wfm"
},
{
"id-name": "dBASEPlus_DarkTheme_byLycanThrope",
"display-name": "dBASEPlus_DarkTheme",
"version": "2024-Feb-03",
"repository": "",
"description": "dBASE Plus (Dark Theme)",
"author": "Lycan Thrope",
"autoCompletion": "dBASEPlus_DarkTheme",
"functionList": "dbaseplus",
"sample": "dBASEPlus_byLycanThrope.wfm"
},
{
"id-name": "DCL_by-wolfxx",
"display-name": "DCL",
"version": "Tue, 08 Nov 2005 21:33:04 GMT",
"repository": "",
"description": "DCL",
"author": "Wolfgang Walhütter <mailto:[email protected]>"
},
{
"id-name": "DelphiForms_by-ewgbel",
"display-name": "Delphi Forms",
"version": "Wed, 11 Dec 2013 09:07:31 GMT",
"repository": "",
"description": "Delphi Forms",
"author": "Ewgenij Belzmann <mailto:[email protected]>"
},
{
"id-name": "DinkC_by-sparrowhawk76",
"display-name": "DinkC",
"version": "Sat, 18 Feb 2012 13:51:06 GMT",
"repository": "",
"description": "DinkC",
"author": "Y.V. <mailto:[email protected]>"
},
{
"id-name": "DML-Gembase_byDubMatrix",
"display-name": "DML / Gembase",
"version": "Sun, 22 Jul 2012 21:38:31 GMT",
"repository": "",
"description": "DML / Gembase",
"author": "DubMatrix <mailto:[email protected]>"
},
{
"id-name": "DNS-Zone_byJeremyLaidman",
"display-name": "DNS Zone",
"version": "Thu, 11 Nov 2010 13:29:00 GMT",
"repository": "",
"description": "DNS Zone",
"author": "Jeremy Laidman <mailto:[email protected]>"
},
{
"id-name": "Dot_by-major25",
"display-name": "Dot",
"version": "Fri, 20 Aug 2010 16:44:47 GMT",
"repository": "",
"description": "Dot",
"author": "major25 <mailto:[email protected]>"
},
{
"id-name": "DriveMaster_byNiallByrne",
"display-name": "DriveMaster",
"version": "Fri, 20 Dec 2013 18:20:30 GMT",
"repository": "",
"description": "DriveMaster",
"author": "Niall Byrne <mailto:[email protected]>"
},
{
"id-name": "EasytrievePlus_byThomasAglassinger",
"display-name": "Easytrieve Plus",
"version": "Tue, 17 Sep 2013 21:34:53 GMT",
"repository": "",
"description": "Easytrieve Plus",
"author": "thomas.aglassinger <mailto:[email protected]>"
},
{
"id-name": "EisenScript_bySygwindFeamir",
"display-name": "EisenScript",
"version": "Sat, 05 Jan 2013 18:40:37 GMT",
"repository": "",
"description": "EisenScript",
"author": "Sygwind Feamir <mailto:[email protected]>"
},
{
"id-name": "Elf_byMarkkobo",
"display-name": "Elf",
"version": "Mon, 29 Nov 2010 18:51:32 GMT",
"repository": "",
"description": "Elf",
"author": "Markkobo <mailto:[email protected]>"
},
{
"id-name": "Emailheader_byPeterFisk",
"display-name": "Email header",
"version": "Wed, 08 Apr 2020 08:50:00 GMT",
"repository": "",
"description": "",
"author": "PeterFisk <mailto:[email protected]>"
},
{
"id-name": "Erdas-MDL_by-meelmaar",
"display-name": "ERDAS MDL",
"version": "Fri, 12 Feb 2010 21:32:38 GMT",
"repository": "",
"description": "ERDAS MDL",
"author": "meelmaar <mailto:[email protected]>"
},
{
"id-name": "erlang_byMikeKaganski",
"display-name": "Erlang",
"version": "Mon, 12 Sep 2011 07:16:34 GMT",
"repository": "",
"description": "Erlang",
"author": "mikekaganski <mailto:[email protected]>"
},
{
"id-name": "ESLNotepad_byJohnPearce",
"display-name": "ESL",
"version": "Sun, 31 Jul 2011 11:13:57 GMT",
"repository": "",
"description": "ESL",
"author": "John Pearce <mailto:[email protected]>"
},
{
"id-name": "ESPRIT_Post_Processer_byTitusRyker",
"display-name": "ESRIT",
"version": "Fri, 16 May 2014 18:00:28 GMT",
"repository": "",
"description": "ESRIT",
"author": "Titus Ryker <mailto:[email protected]>"
},
{
"id-name": "EssbaseSuite_byCelvinKattookaran",
"display-name": "Essbase Suite",
"version": "Sat, 11 Jun 2011 10:21:59 GMT",
"repository": "",
"description": "Essbase Suite",
"author": "Celvin Kattookaran <mailto:[email protected]>"
},
{
"id-name": "ExcelFormula_byOlivierMarche",
"display-name": "ExcelFormula",
"version": "v1.00",
"repository": "",
"sample": "ExcelFormula_ThemeDark_byOlivierMarche.txt",
"description": "Excel Formulas syntax highlight",
"author": "OlivierMarche",
"homepage": "https://github.com/OlivierMarche"
},
{
"id-name": "ExcelFormula_ThemeDark_byOlivierMarche",
"display-name": "ExcelFormula_Dark",
"version": "v1.00",
"repository": "",
"description": "Excel Formulas syntax highlight (Dark theme)",
"author": "OlivierMarche",
"homepage": "https://github.com/OlivierMarche"
},
{
"id-name": "ExcelForumlas-xlf_byDickKusleika",
"display-name": "Excel formulas",
"version": "Wed, 02 Feb 2011 19:09:15 GMT",
"repository": "",
"description": "Excel formulas",
"author": "Dick Kusleika",
"homepage": "http://www.dailydoseofexcel.com/archives/2010/09/29/formula-editor-in-notepad/"
},
{
"id-name": "ezproxy_dark_byABoze",
"display-name": "EZproxy Dark",
"autoCompletion": "ezproxy_byABoze",
"version": "Fri, 5 Jul 2024 5:37:15 GMT",
"sample": "ezproxy_byABoze_config.txt",
"repository": "",
"description": "EZproxy config.txt directives",
"author": "Andy Boze <mailto:[email protected]>"
},
{
"id-name": "ezproxy_light_byABoze",
"display-name": "EZproxy Light",
"autoCompletion": "ezproxy_byABoze",
"version": "Fri, 5 Jul 2024 5:37:15 GMT",
"sample": "ezproxy_byABoze_config.txt",
"repository": "",
"description": "EZproxy config.txt directives",
"author": "Andy Boze <mailto:[email protected]>"
},
{
"id-name": "Fanuc_by-mar_tech",
"display-name": "Fanuc",
"version": "Tue, 28 Jan 2014 18:47:05 GMT",
"repository": "",
"description": "Fanuc",
"author": "mar_tech <mailto:[email protected]>"
},
{
"id-name": "FEKO_byClintScarborough",
"display-name": "FEKO",
"version": "Sat, 24 Mar 2012 16:15:25 GMT",
"repository": "",
"description": "FEKO",
"author": "Clint Scarborough <mailto:[email protected]>"
},
{
"id-name": "FHEM_byChristophWempe",
"display-name": "FHEM",
"version": "Wed, 13 Jun 2012 21:51:46 GMT",
"repository": "",
"description": "FHEM",
"author": "Christoph Wempe <mailto:[email protected]>"
},
{
"id-name": "FileMakerPro_Calculation_byDanSmith",
"display-name": "FileMaker Pro calculation",
"version": "Sun, 26 Jan 2020 22:42:24 GMT",
"repository": "https://raw.githubusercontent.com/dansmith65/FileMaker-Notepad-plus-plus/master/userDefineLang_FileMaker.xml",
"description": "FileMaker Pro calculation",
"author": "Dan Smith <mailto:[email protected]>",
"homepage": "https://github.com/dansmith65/FileMaker-Notepad-plus-plus"
},
{
"id-name": "Fobagraph_Script_(.bia)_DarkMode_by_HelloWorldFR",
"display-name": "Fobagraph Script DarkMode",
"version": "18/10/2023 17:40:00 GMT",
"sample": "Fobagraph_Script_by_HelloWorldFR.bia",
"repository": "https://github.com/HelloWorldFR/userDefinedLanguages/blob/master/UDLs/Fobagraph_Script_(.bia)_DarkMode_by_HelloWorldFR.xml",
"description": "Fobagraph Script for laser machine",
"author": "HelloWorldFR",
"homepage": "https://github.com/HelloWorldFR/"
},
{
"id-name": "Fobagraph_Script_(.bia)_LightMode_by_HelloWorldFR",
"display-name": "Fobagraph Script LightMode",
"autoCompletion": "fobagraph",
"version": "18/10/2023 17:40:00 GMT",
"sample": "Fobagraph_Script_by_HelloWorldFR.bia",
"repository": "https://github.com/HelloWorldFR/userDefinedLanguages/blob/master/UDLs/Fobagraph_Script_(.bia)_LightMode_by_HelloWorldFR.xml",
"description": "Fobagraph Script for laser machine",
"author": "HelloWorldFR",
"homepage": "https://github.com/HelloWorldFR/"
},
{
"id-name": "FontForge_Project_byAndrewMiller",
"display-name": "FontForge Font project",
"version": "Tue, 11 Feb 2014 19:43:24 GMT",
"repository": "",
"description": "FontForge Font project",
"author": "Andrew Miller <mailto:[email protected]>"
},
{
"id-name": "FontForge_Script_byAndrewMiller",
"display-name": "FontForge Script language",
"version": "Tue, 11 Feb 2014 19:42:52 GMT",
"repository": "",
"description": "FontForge Script language",
"author": "Andrew Miller <mailto:[email protected]>"
},
{
"id-name": "FormCalc_byJeremyEvanchesky",
"display-name": "FormCalc",
"version": "Sun, 30 Dec 2012 15:41:36 GMT",
"repository": "",
"description": "FormCalc",
"author": "Jeremy Evanchesky <mailto:[email protected]>"
},
{
"id-name": "Fortinet_FortiOS_FGT_by_DPBarbosa",
"display-name": "Fortinet Fortigate",
"version": "2022-Sep-16",
"repository": "",
"description": "Fortinet FortiOS for Fortigate",
"author": "DPBarbosa"
},
{
"id-name": "Fortinet_FortiOS_FGT_by_SSavaso_6_4_14",
"display-name": "Fortinet Fortigate 6.4.14",
"version": "20240203 - Fortigate OS Version 6.4.14",
"repository": "https://github.com/ssavaso/Fortinet_FortiOS_FGT",
"description": "Fortinet FortiOS for Fortigate",
"author": "ssavaso"
},
{
"id-name": "Fortran_FreeFormat_SebastianHoelz",
"display-name": "Free Form Fortran",
"version": "Thu, 11 Feb 2010 18:42:27 GMT",
"repository": "",
"description": "Free Form Fortran",
"author": "Sebastian Hölz <mailto:[email protected]>"
},
{
"id-name": "Fsharp_byJamesJensen",
"display-name": "F#",
"version": "Sat, 20 Apr 2013 13:33:45 GMT",
"repository": "",
"description": "F#",
"author": "James Jensen <mailto:[email protected]>"
},
{
"id-name": "GameMonkey_byJanSchreiber",
"display-name": "GameMonkey",
"version": "Sun, 13 Dec 2009 12:42:51 GMT",
"repository": "",
"description": "GameMonkey",
"author": "janschreiber <mailto:[email protected]>"
},
{
"id-name": "GCODE-3d_by_AndresHermes",
"display-name": "G-Code 3D Print",
"version": "Sun, 22 Sep 2013 11:02:15 GMT",
"repository": "",
"description": "G-Code 3D Print",
"author": "Andrés Hermes <mailto:[email protected]>"
},
{
"id-name": "GCODE-3d-MostCNC_byMikeLohmeyer",
"display-name": "G-Code (most CNC machines)",
"version": "Sat, 16 Feb 2013 14:48:34 GMT",
"repository": "",
"description": "G-Code (most CNC machines)",
"author": "Mike Lohmeyer <mailto:[email protected]>"
},
{
"id-name": "GCODE-3d-OkumaLathes_byHarveyShrock",
"display-name": "G-Code (Okuma lathes)",
"version": "Sun, 16 Dec 2012 13:55:26 GMT",
"repository": "",
"description": "G-Code (Okuma lathes)",
"author": "Harvey Shrock <mailto:[email protected]>"
},
{
"id-name": "GCODE-Sinumerik_bySergioGU",
"display-name": "GCODE-Sinumerik",
"sample": "GCODE-Sinumerik_bySergioGU.SPF",
"version": "1.0.0",
"repository": "",
"description": "Siemens Sinumerik CNC GCode syntax highlighting",
"author": "Sergio GU"
},
{
"id-name": "gedcom55_byAnonymous_in2010",
"display-name": "GEDCOM55",
"version": "Thu, 28 Jan 2010 17:57:57 GMT",
"repository": "",
"description": "GEDCOM55",
"author": "(anonymous)"
},
{
"id-name": "Geomatica_EASI_byPhilippeCote",
"display-name": "EASI",
"version": "Tue, 05 Jun 2012 22:37:47 GMT",
"repository": "",
"description": "EASI",
"author": "Philippe Côté <mailto:[email protected]>"
},
{