forked from notepad-plus-plus/userDefinedLanguages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
udl-list.json
2737 lines (2737 loc) · 88.2 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": "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": "zenscript",
"display-name": "ZenScript",
"version": "1.1.0",
"repository": "https://github.com/redfire75369/zenscript-npp",
"description": " ZenScript Syntax Highlighter for Notepad++",
"author": "Redfire",
"homepage": "https://github.com/redfire75369/zenscript-npp"
},
{
"id-name": "SIL-Power-Scripts-for-Jira_byHaydenSingleton",
"display-name": "SIL",
"version": "2023-10-19",
"repository": "",
"description": "Syntax Highlighting for Simple Issue Language from Power Scripts for Jira by Appfire.",
"author": "Hayden Singleton",
"homepage": "https://github.com/HaydenSingleton"
},
{
"id-name": "RouterOS Script",
"display-name": "RouterOS Script - NieL™",
"version": "2023-06-01",
"repository": "https://github.com/NieLTechSolution/Notepad-plus-plus/blob/e8422064a97eb7cd372c2b5769f760ce233b5bbc/UDL/RouterOS-Script-NieL%E2%84%A2.xml",
"description": "Syntax for the Mikrotik RouterOS Script, it is unofficial UDL to help scripting your mikrotik. Highlighting syntax somewhat helpful of detecting error inputs",
"author": "NieL™ TechSolution"
},
{
"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:carl_myerholtz@yahoo.com>"
},
{
"id-name": "markdown-plus-plus",
"display-name": "Markdown-plus-plus",
"version": "3.2.0",
"repository": "https://github.com/Edditoria/markdown-plus-plus",
"description": "Markdown syntax highlighting. In dev stage of supporting GitHub Flavored Markdown (GFM). More themes to download in the repository.",
"author": "Edditoria",
"homepage": "https://github.com/Edditoria"
},
{
"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": "AutoCAD-LPSS.udl",
"display-name": "AutoCAD-LPSS",
"version": "2020-Jan-21",
"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": "STL-3dObject-ASCII.byPryrt",
"display-name": "STL 3dObject",
"version": "2020-Jan-12",
"repository": "",
"description": "3d Stereolithography ASCII file (STL)",
"author": "Pryrt",
"homepage": "https://github.com/pryrt/"
},
{
"id-name": "reStructuredText.bySteenhulthin",
"display-name": "reStructuredText",
"version": "2020-Jan-22",
"repository": "",
"description": "Provides syntax higlighting for reStructuredText for Notepad++ through a user defined language file.",
"author": "steenhulthin",
"homepage": "https://github.com/steenhulthin/reStructuredText_NPP"
},
{
"id-name": "3GL_byDrezzzz",
"display-name": "3GL",
"version": "Tue, 08 Dec 2009 20:46:14 GMT",
"repository": "",
"description": "3GL",
"author": "drezzzzz <mailto:drezzzzz@users.sourceforge.net>"
},
{
"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:amix@pc-dome.com>"
},
{
"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:christ.xu@gmail.com>"
},
{
"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_byMarianMeinhard",
"display-name": "Abaqus",
"version": "Sat, 26 Nov 2011 15:56:55 GMT",
"repository": "",
"description": "Abaqus",
"author": "Marian Meinhard <mailto:Marian.Meinhard@federalmogul.com>"
},
{
"id-name": "ABAQUS_6.13-5_ObsidianTheme",
"display-name": "ABAQUS_6.13-5",
"version": "2020-Dez-09",
"repository": "",
"description": "ABAQUS CAE engineering simulation software",
"author": "https://github.com/dfens83"
},
{
"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:psapir@metricsmarketing.com>"
},
{
"id-name": "ANSYS_byEmiklo",
"display-name": "ANSYS",
"version": "Sun, 19 Dec 2010 22:06:05 GMT",
"repository": "",
"description": "ANSYS",
"author": "emiklo <mailto:emiklo@users.sourceforge.net>"
},
{
"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:alfonsoencisop@yahoo.com>"
},
{
"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:isalgueiro@gmail.com>"
},
{
"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:djenandjijg@gmail.com>"
},
{
"id-name": "arc86_h2fooko",
"display-name": "arc86",
"version": "Tue, 22 Jun 2010 07:04:06 GMT",
"repository": "",
"description": "arc86",
"author": "h2fooko <mailto:h_d_f@hotmail.com>"
},
{
"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:Jakob.Nisell@vatte.slu.se>"
},
{
"id-name": "GNUARM_ASM_byLeehaedong",
"display-name": "ASM for ARM GNU",
"version": "Tue, 26 Oct 2010 10:54:06 GMT",
"repository": "",
"description": "ASM for ARM GNU",
"author": "leehaedong <mailto:seaest2@hotmail.com>"
},
{
"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:btullio@haascnc.com>"
},
{
"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:A.V.Zorin@ngs.ru>"
},
{
"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:jackamaynard@yahoo.com>"
},
{
"id-name": "AsmForMIPS-R2000_byJoaoRicardoRosa",
"display-name": "ASM for MIPS R2000",
"version": "Thu, 26 Jan 2012 08:32:54 GMT",
"repository": "",
"description": "ASM for MIPS R2000",
"author": "Jooo Ricardo Rosa <mailto:ashyam.lusco@gmail.com>"
},
{
"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:elisherer@users.sourceforge.net>"
},
{
"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:pjm_oliveira@yahoo.com>"
},
{
"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:brgabriel@sspx.org>"
},
{
"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:brgabriel@sspx.org>"
},
{
"id-name": "AutoHotKey_byBrotherGabriel-Marie",
"display-name": "AutoHotKey",
"version": "Thu, 21 Sep 2023 10:26 GMT",
"repository": "",
"description": "AutoHotKey",
"author": "Brother Gabriel-Marie <mailto:brgabriel@sspx.org>; 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:puckettm@gmail.com>"
},
{
"id-name": "AVISynth_byRustamMusa",
"display-name": "AVISynth",
"version": "Sun, 03 Feb 2013 10:32:25 GMT",
"repository": "",
"description": "AVISynth",
"author": "Муса-Ахунов Рустам <mailto:rustam-musa@rambler.ru>"
},
{
"id-name": "Awk_byVitaliyDovgan",
"display-name": "AWK",
"version": "Mon, 16 Apr 2007 07:57:04 GMT",
"repository": "",
"description": "AWK",
"author": "Vitaliy Dovgan <mailto:dv__@users.sourceforge.net>"
},
{
"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:williamolterman@gmail.com>"
},
{
"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:jeremy.laidman@gmail.com>"
},
{
"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:jeremy.laidman@gmail.com>"
},
{
"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:cchris@users.sourceforge.net>"
},
{
"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:evan.shultz@qscaudio.com>"
},
{
"id-name": "Cesil_byMajor25",
"display-name": "Cesil",
"version": "Fri, 20 Aug 2010 16:44:05 GMT",
"repository": "",
"description": "Cesil",
"author": "major25 <mailto:major25@users.sourceforge.net>"
},
{
"id-name": "Chilli_byCliveToms",
"display-name": "Chilli",
"version": "Wed, 25 Aug 2010 18:00:30 GMT",
"repository": "",
"description": "Chilli",
"author": "Clive Toms <mailto:clive@tomsfamily.org.uk>"
},
{
"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:edljobe@hotmail.com>"
},
{
"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:christoph@wempe.net>"
},
{
"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:christoph@wempe.net>"
},
{
"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:lrodrig@ualg.pt>"
},
{
"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:cotter.daniel@gmail.com>"
},
{
"id-name": "CMTS_byTiGeRNet",
"display-name": "CMTS",
"version": "Sat, 23 Jul 2011 21:34:50 GMT",
"repository": "",
"description": "CMTS",
"author": "TiGeRNeT <mailto:tigernet@gmal.com>"
},
{
"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:Alain.Chappuis@medecine.unige.ch>"
},
{
"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:nico.mexis@kabelmail.de>"
},
{
"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:nico.mexis@kabelmail.de>"
},
{
"id-name": "ColdfusionCF9_bySpenster",
"display-name": "Coldfusion",
"version": "Fri, 04 Jun 2010 07:17:33 GMT",
"repository": "",
"description": "Coldfusion",
"author": "spenster <mailto:spenster@users.sourceforge.net>"
},
{
"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:thomas.aglassinger@rrz.at>"
},
{
"id-name": "consize_byCarstenEllwein",
"display-name": "Consize",
"version": "Fri, 01 Nov 2013 18:35:28 GMT",
"repository": "",
"description": "Consize",
"author": "Carsten Ellwein <mailto:cellwein@stud.de>"
},
{
"id-name": "csound_byNikitaMozziconin",
"display-name": "csound",
"version": "Sat, 25 May 2013 10:18:53 GMT",
"repository": "",
"description": "csound",
"author": "Nikita Mozziconin <mailto:mozziconin@gmail.com>"
},
{
"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:dros001@yahoo.com>"
},
{
"id-name": "Dart_by_thiagovscoelho",
"display-name": "Dart",
"version": "Fri Apr 21 08:09:59 2023 GMT",
"repository": "",
"description": "Dart",
"author": "Thiago Coelho <mailto:thiagovscoelho@gmail.com>"
},
{
"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:sbowman@mitre.org>"
},
{
"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": "DCL_by-wolfxx",
"display-name": "DCL",
"version": "Tue, 08 Nov 2005 21:33:04 GMT",
"repository": "",
"description": "DCL",
"author": "Wolfgang Walhütter <mailto:wolfxx@inode.at>"
},
{
"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:ewgbel@gmail.com>"
},
{
"id-name": "DinkC_by-sparrowhawk76",
"display-name": "DinkC",
"version": "Sat, 18 Feb 2012 13:51:06 GMT",
"repository": "",
"description": "DinkC",
"author": "Y.V. <mailto:sparrowhawk76@gmail.com>"
},
{
"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:dubmatrix@gmail.com>"
},
{
"id-name": "Dot_by-major25",
"display-name": "Dot",
"version": "Fri, 20 Aug 2010 16:44:47 GMT",
"repository": "",
"description": "Dot",
"author": "major25 <mailto:major25@users.sourceforge.net>"
},
{
"id-name": "JBossDroolsRules_byArulPrashanth",
"display-name": "JBoss Drools Rules",
"version": "Sat, 23 Feb 2013 15:00:19 GMT",
"repository": "",
"description": "JBoss Drools Rules",
"author": "Arul Prashanth <mailto:arul.prashanth@gmail.com>"
},
{
"id-name": "DriveMaster_byNiallByrne",
"display-name": "DriveMaster",
"version": "Fri, 20 Dec 2013 18:20:30 GMT",
"repository": "",
"description": "DriveMaster",
"author": "Niall Byrne <mailto:Niall.Byrne@sandisk.com>"
},
{
"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:philippe.cote@effigis.com>"
},
{
"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:thomas.aglassinger@rrz.at>"
},
{
"id-name": "EisenScript_bySygwindFeamir",
"display-name": "EisenScript",
"version": "Sat, 05 Jan 2013 18:40:37 GMT",
"repository": "",
"description": "EisenScript",
"author": "Sygwind Feamir <mailto:sygwind@gmail.com>"
},
{
"id-name": "Elf_byMarkkobo",
"display-name": "Elf",
"version": "Mon, 29 Nov 2010 18:51:32 GMT",
"repository": "",
"description": "Elf",
"author": "Markkobo <mailto:Markkobo@users.sourceforge.net>"
},
{
"id-name": "Emailheader_byPeterFisk",
"display-name": "Email header",
"version": "Wed, 08 Apr 2020 08:50:00 GMT",
"repository": "",
"description": "",
"author": "PeterFisk <mailto:peter.fiskerstrand@gmail.com>"
},
{
"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:meelmaarten@hotmail.com>"
},
{
"id-name": "erlang_byMikeKaganski",
"display-name": "Erlang",
"version": "Mon, 12 Sep 2011 07:16:34 GMT",
"repository": "",
"description": "Erlang",
"author": "mikekaganski <mailto:mikekaganski@gmail.com>"
},
{
"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:celvinvincent@gmail.com>"
},
{
"id-name": "ESLNotepad_byJohnPearce",
"display-name": "ESL",
"version": "Sun, 31 Jul 2011 11:13:57 GMT",
"repository": "",
"description": "ESL",
"author": "John Pearce <mailto:John.Pearce@insimulation.com>"
},
{
"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:titusryker@gmail.com>"
},
{
"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": "Fsharp_byJamesJensen",
"display-name": "F#",
"version": "Sat, 20 Apr 2013 13:33:45 GMT",
"repository": "",
"description": "F#",
"author": "James Jensen <mailto:badocelot@hotmail.com>"
},
{
"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:mar_tech@verizon.net>"
},
{
"id-name": "FEKO_byClintScarborough",
"display-name": "FEKO",
"version": "Sat, 24 Mar 2012 16:15:25 GMT",
"repository": "",
"description": "FEKO",
"author": "Clint Scarborough <mailto:clint@psu.edu>"
},
{
"id-name": "FHEM_byChristophWempe",
"display-name": "FHEM",
"version": "Wed, 13 Jun 2012 21:51:46 GMT",
"repository": "",
"description": "FHEM",
"author": "Christoph Wempe <mailto:christoph@wempe.net>"
},
{
"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:A.J.Miller@bcs.org.uk>"
},
{
"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:A.J.Miller@bcs.org.uk>"
},
{
"id-name": "FormCalc_byJeremyEvanchesky",
"display-name": "FormCalc",
"version": "Sun, 30 Dec 2012 15:41:36 GMT",
"repository": "",
"description": "FormCalc",
"author": "Jeremy Evanchesky <mailto:kinzyjr@live.com>"
},
{
"id-name": "LotusNotesFormula_byPaulGoodwin",
"display-name": "Formula for Lotus Notes",
"version": "Fri, 23 Jul 2010 16:36:03 GMT",
"repository": "",
"description": "Formula for Lotus Notes",
"author": "Paul Goodwin <mailto:paul@goodwinonline.com>"
},
{
"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:shoelz@ifm-geomar.de>"
},
{
"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:andres@mbau3d.com>"
},
{
"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:mike@akhara.com>"
},
{
"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:shrockmedia@users.sourceforge.net>"
},
{
"id-name": "GameMonkey_byJanSchreiber",
"display-name": "GameMonkey",
"version": "Sun, 13 Dec 2009 12:42:51 GMT",
"repository": "",
"description": "GameMonkey",
"author": "janschreiber <mailto:janschreiber@users.sourceforge.net>"
},
{
"id-name": "gedcom55_byAnonymous_in2010",
"display-name": "GEDCOM55",
"version": "Thu, 28 Jan 2010 17:57:57 GMT",
"repository": "",
"description": "GEDCOM55",
"author": "(anonymous)"
},
{
"id-name": "GIFT-Format_byMatthewKuznia",
"display-name": "GIFT format",
"version": "Tue, 04 Feb 2014 19:10:23 GMT",
"repository": "",
"description": "GIFT format",
"author": "Matthew Kuznia <mailto:mattkuznia@gmail.com>"
},
{
"id-name": "GISDK_byFranciscoFerreira",
"display-name": "GISDK",
"version": "Sun, 23 Sep 2012 13:06:46 GMT",
"repository": "",
"description": "GISDK",
"author": "Francisco Ferreira <mailto:fcpferreira@gmail.com>"
},
{
"id-name": "GLSL3.3_by_yash_eng",
"display-name": "GLSL 3.3",
"version": "Tue, 19 Jan 2010 22:48:04 GMT",
"repository": "",
"description": "GLSL 3.3",
"author": "yash_eng <mailto:yash_eng@users.sourceforge.net>"
},
{
"id-name": "Gnuplot_byJohanWild",
"display-name": "Gnuplot",
"version": "Tue, 02 Nov 2010 22:02:13 GMT",
"repository": "",
"description": "Gnuplot",
"author": "Johan Wild <mailto:johan.wild@europaskolan.se>"
},
{
"id-name": "gnuplot_2023",
"display-name": "Gnuplot (with Folding)",
"version": "Thu, 19 Jan 2023 12:00:00 GMT",
"repository": "",
"description": "Gnuplot, updated syntax including keywords and folding",
"author": "Alexander Stangl <mailto:alexander.stangl@gmail.com>"
},
{
"id-name": "go_byAnthonyStarks",
"display-name": "Google Go (syntax and auto-completion)",
"version": "Tue, 05 Apr 2011 07:09:49 GMT",
"repository": "",
"description": "Google Go (syntax and auto-completion)",
"author": "Anthony Starks <mailto:ajstarks@gmail.com>"
},
{
"id-name": "GoogleProtocolBuffers-GPB_byBradWehmeier",
"display-name": "Google Protocol Buffers",
"version": "Mon, 27 Sep 2010 16:48:56 GMT",
"repository": "",
"description": "Google Protocol Buffers",
"author": "Brad Wehmeier <mailto:bradboy57@gmail.com>"
},
{
"id-name": "Gregorio_byBrotherGabriel-Marie",
"display-name": "Gregorio",
"version": "Sun, 24 Nov 2013 13:34:29 GMT",
"repository": "",
"description": "Gregorio",
"author": "Brother Gabriel-Marie <mailto:brgabriel@sspx.org>"
},
{
"id-name": "Groovy_byGyrm",
"display-name": "Groovy",
"version": "Sun, 19 Jun 2011 14:34:50 GMT",
"repository": "",
"description": "Groovy",
"author": "gyrm <mailto:gyrm@users.sourceforge.net>"
},
{
"id-name": "HLSL_byUniversal",
"display-name": "HLSL",
"version": "Mon, 01 Aug 2005 13:59:10 GMT",
"repository": "",
"description": "HLSL",
"author": "universal <mailto:u-n-i@yandex.ru>"
},
{
"id-name": "HSpice_by-sahjakjebndmns",
"display-name": "HSpice",
"version": "Sat, 12 May 2012 11:40:06 GMT",
"repository": "",
"description": "HSpice",
"author": "sahjakjebndmns <mailto:sahjakjebndmns@users.sourceforge.net>"
},
{
"id-name": "Htaccess_bySilasBrill",
"display-name": "Htaccess",
"version": "Sat, 05 Mar 2011 14:32:24 GMT",
"repository": "",
"description": "Htaccess",
"author": "Silas Brill <mailto:brilliand@gmail.com>"
},
{
"id-name": "iCalendar_by-jfreundo",
"display-name": "iCalendar",
"version": "Tue, 19 Jan 2010 22:37:41 GMT",
"repository": "",
"description": "iCalendar",
"author": "jfreundo <mailto:jfreundo@users.sourceforge.net>"
},
{
"id-name": "IceBreak-RPG_byNielsLiisberg",
"display-name": "IceBreak RPG",
"version": "Thu, 28 Oct 2010 19:20:58 GMT",
"repository": "",
"description": "IceBreak RPG",
"author": "Niels Liisberg <mailto:nli@system-method.com>"
},
{
"id-name": "Icon_byOlegBakharev",
"display-name": "Icon",
"version": "Sun, 05 Aug 2012 13:52:40 GMT",
"repository": "",
"description": "Icon",
"author": "Oleg Bakharev <mailto:disconnectix@gmail.com>"
},
{
"id-name": "Informix4GL_byHarryChen",
"display-name": "Informix 4GL",
"version": "Sun, 19 Dec 2010 13:49:46 GMT",
"repository": "",
"description": "Informix 4GL",
"author": "Harry Chen <mailto:HARRY_CHEN@chipmos.com>"
},
{
"id-name": "ITT_IDL-dat_by-pocaracas",
"display-name": "Interactive Data Language (.dat files)",
"version": "Thu, 03 Nov 2011 08:02:34 GMT",
"repository": "",
"description": "Interactive Data Language (.dat files)",
"author": "pocaracas <mailto:pppcccaaa@gmail.com>"
},
{
"id-name": "ITT_IDL-pro_byDavidHiggins",
"display-name": "Interactive Data Language (.pro files)",
"version": "Fri, 04 Nov 2011 00:02:28 GMT",
"repository": "",
"description": "Interactive Data Language (.pro files)",
"author": "David Higgins <mailto:higgins.david@gmail.com>"
},
{
"id-name": "IDL_byAlexisBietti",
"display-name": "Interface Definition Language",
"version": "Tue, 02 Feb 2010 15:40:05 GMT",
"repository": "",
"description": "Interface Definition Language",
"author": "Alexis Bietti <mailto:alexisbietti@gmail.com>"
},
{
"id-name": "iMacros_byDanielSteinberg",
"display-name": "iMacros",
"version": "Sun, 27 Jun 2010 14:18:20 GMT",
"repository": "",
"description": "iMacros",
"author": "Daniel Steinberg <mailto:support@opus.com>"
},
{
"id-name": "interlis_byStefanBurckhardt",
"display-name": "interlis",
"version": "Wed, 02 Feb 2011 18:21:01 GMT",
"repository": "",
"description": "interlis",
"author": "Stefan Burckhardt <mailto:stefan.burckhardt@gmx.ch>"
},
{
"id-name": "Javascript-alt_byMarkRamirez",
"display-name": "javascript",
"version": "Tue, 12 Nov 2013 22:03:54 GMT",
"repository": "",
"description": "javascript",
"author": "Mark Ramirez <mailto:mail.umlcat@gmail.com>"
},
{
"id-name": "jBaseBasic-jbc_byGene",
"display-name": "jBase Basic",
"version": "Thu, 10 May 2012 17:41:52 GMT",
"repository": "",
"description": "jBase Basic",
"author": "Gene <mailto:13760193932@163.com>"
},
{
"id-name": "JCL_byThomasAglassinger",
"display-name": "JCL",
"version": "Tue, 17 Sep 2013 21:40:28 GMT",
"repository": "",
"description": "JCL",
"author": "thomas.aglassinger <mailto:thomas.aglassinger@rrz.at>"
},
{
"id-name": "JScript-WSH-PanelMod_byLSI-N",
"display-name": "WSH Panel Mod",
"version": "Fri, 16 May 2014 17:28:25 GMT",
"repository": "",
"description": "WSH Panel Mod",
"author": "LSI N <mailto:p774lsi@gmail.com>"
},
{
"id-name": "Juniper_JunOS_byHansTendrup",
"display-name": "Juniper JunOS",
"version": "Sat, 05 Feb 2011 13:06:19 GMT",
"repository": "",
"description": "Juniper JunOS",
"author": "Hans Tendrup <mailto:hrtendrup@hotmail.com>"
},
{
"id-name": "kiXtart_byAnonymous_in2005",
"display-name": "kiXtart",
"version": "Wed, 28 Dec 2005 21:19:46 GMT",
"repository": "",
"description": "kiXtart",
"author": "(anonymous)"
},
{