-
Notifications
You must be signed in to change notification settings - Fork 36
/
plugins_template.xml
3191 lines (3191 loc) · 215 KB
/
plugins_template.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<plugins
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="plugins_template.xsd">
<plugin name="3P - Progress Programmers Pal">
<x64Version>1.8.4</x64Version>
<aliases>
<alias name="3P"/>
</aliases>
<description>[Requires .net framework 4.6.1]\n\n3P is a notepad++ plug-in designed to help writing OpenEdge ABL (formerly known as Progress 4GL) code. It provides :\n\n- a powerful auto-completion\n- tool-tips on every words\n- a code explorer to quickly navigate through your code\n- a file explorer to easily access all your sources\n- the ability to run/compile and even PROLINT your source file with an in-line visualization of errors\n- more than 50 options to better suit your needs\n- and so much more!\n\nVisit https://jcaillon.github.io/3P/ for more details on the plugin</description>
<author>Julien Caillon</author>
<homepage>https://jcaillon.github.io/3P/</homepage>
<sourceUrl>https://github.com/jcaillon/3P</sourceUrl>
<latestUpdate>[2019-02-23]More infos here :\nhttps://github.com/jcaillon/3P/releases/tag/v1.8.4\n\nFixed issues:\n #246: Wrong behavior for the auto-completion in multi-carets mode\n #251: Silent error parsing UserDefineLang.xml\n #250: Crash during shutdown due to modified collection\n #249: Admin rights required to update 3P for notepad++ version 7.6.1 to 7.6.2\n #252: From notepad++ v7.6.2, autocompletion .xml files were moved to $installdir/autoCompletion\n #227: Infinite loop on includes calling the same include (huge thanks to simi aka @slegian for his precious help)\n #206: 3P can now evaluate pre-processed expression in &IF statements and ignore definitions made in false blocks\n &GLOBAL-DEFINE variables defined in includes now correctly appear in the autocompletion\n #233: Parser error on unbalanced DO / END blocks\n #254: Parser error for &ANALYZE-RESUME followed by a block name\n #242: Download datadigger in the custom folder specified in the options (if not aleady installed)</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/jcaillon/3P/releases/download/v1.8.4/3P.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="3P.dll" to="$PLUGINDIR$\" validate="true"/>
<run file="NetFrameworkChecker.exe" arguments="-ShowOnlyIfNotInstalled" outsideNpp="1"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\3P.dll"/>
</x64>
</remove>
</plugin>
<plugin name="ActiveX Plugin">
<x64Version>1.1.8.5</x64Version>
<description>This plugin allows you to control Notepad++ via ActiveX.\nYou can use ActiveX with many scripting languages (VBScript, JScript, PHP, ...) and other languages (C++, C+, VB.NET, Delphi, ...).\nSo you are not bound to a single language.</description>
<author>Bananen-Joe</author>
<homepage>https://sourceforge.net/projects/nppactivexplugin/</homepage>
<sourceUrl>https://sourceforge.net/projects/nppactivexplugin/</sourceUrl>
<latestUpdate>[2020-03-12] Bugfixes and x64 version.</latestUpdate>
<minVersion>7.8.0</minVersion>
<install>
<x64>
<download>https://sourceforge.net/projects/nppactivexplugin/files/bin/ActiveX_Unicode_1_1_8_5.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ActiveX.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="ActiveX\*.*" to="$PLUGINDIR$\ActiveX"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ActiveX.dll"/>
<delete file="$PLUGINDIR$\ActiveX\RegisterActiveX.exe"/>
<delete file="$PLUGINDIR$\ActiveX\ActiveX.chm"/>
</x64>
</remove>
</plugin>
<plugin name="AnalysePlugin">
<x64Version>1.11.37</x64Version>
<description>AnalysePlugin will help you to search for more than one search pattern at a time. Great for analysing log files.</description>
<author>Mattes H.</author>
<homepage>https://analyseplugin.sourceforge.net/</homepage>
<sourceUrl>https://sourceforge.net/p/analyseplugin/code/</sourceUrl>
<latestUpdate>Changes since 1.11\n - bugfix positioning ColorPopup on left side multi screen (negative coordinates)\n - bugfix scrambling with "Toggle this" context menu option\n - bugfix small correction in xsd to reflect current status\n - bugfix assertion when Options dialog is opened before findDlg docking window\n - added version information in Windows properties dialog\n - synced with source from Notepad++ v7.4.1\n - added package for both systems 32/64 in one \nChanges since 1.11-preview\n - added 64bit support and package for both systems 32/64 in one \nFurther change log see changes.txt</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/analyseplugin/files/binaries/v01.11-R37-x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="AnalysePlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\AnalysePlugin"/>
<copy from="AnalysePlugin.dll" to="$PLUGINDIR$\AnalysePlugin"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\AnalysePlugin"/>
<delete file="$PLUGINDIR$\AnalysePlugin\AnalysePlugin.dll"/>
</x64>
</remove>
</plugin>
<plugin name="AndroidLogger">
<x64Version>1.2.7</x64Version>
<description>Lexer for logcat, with it you can highlight the log lines and the colors customizable. In additional, it can capture logs & screenshot from device online.</description>
<author>Simbaba</author>
<homepage>https://sourceforge.net/p/androidlogger/</homepage>
<latestUpdate>V1.2.7 2015.5.17 \n1) Add interactive shell mode \n2) Open the source</latestUpdate>
<stability>Good</stability>
<minVersion>6.5</minVersion>
<install>
<x64>
<download>https://sourceforge.net/projects/androidlogger/files/AndroidLoggerV1.2.7/AndroidLogger_Src.V1.2.7.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="AndroidLogger.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Config\AndroidLogger.xml" to="$CONFIGDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="AutoCodepage">
<x64Version>1.2.3</x64Version>
<description>AutoCodepage: A plugin to automatically set a document's code page to your needs on loading or renaming a document, changing its language or activating its tab. Usefull especially when coding batch scripts.</description>
<author>Andreas Heim</author>
<homepage>https://sourceforge.net/projects/autocodepage/</homepage>
<sourceUrl>https://sourceforge.net/projects/autocodepage/files/v1.2.2/src/</sourceUrl>
<latestUpdate>v1.2.3 - November 2018 \n- changed: Adopted new plugin hosting model of Notepad++ version v7.5.9 and higher.</latestUpdate>
<minVersion>7.5.7</minVersion>
<install>
<x64>
<download>https://sourceforge.net/projects/autocodepage/files/v1.2.3/plugin/x86/AutoCodepage_v1.2.3_UNI_PA.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="AutoCodepage.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="AutoCodepage.txt" to="$PLUGINDIR$\doc"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\AutoCodepage.txt"/>
</x64>
</remove>
</plugin>
<plugin name="AutoEolFormat">
<x64Version>1.0.1</x64Version>
<description>A plugin to automatically set a document's EOL (End of Line) format to your needs on loading, saving or renaming a document or activating its tab.</description>
<author>Andreas Heim</author>
<homepage>https://sourceforge.net/projects/autoeolformat/</homepage>
<sourceUrl>https://sourceforge.net/projects/autoeolformat/files/v1.0.1/src/</sourceUrl>
<latestUpdate>v1.0.1 - November 2018 \n- changed: Adopted new plugin hosting model of Notepad++ version v7.5.9 and higher.</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/autoeolformat/files/v1.0.1/plugin/x86/AutoEolFormat_v1.0.1_UNI_PA.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="AutoEolFormat.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="AutoEolFormat.txt" to="$PLUGINDIR$\doc"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\AutoEolFormat.txt"/>
</x64>
</remove>
</plugin>
<plugin name="Automation Scripts">
<x64Version>1.0.4.0</x64Version>
<aliases>
<alias name="NppScripts"/>
<alias name="Notepad++ Automation"/>
</aliases>
<description>Notepad++ plugin for C# based automation. \nThe plugin allows implementing a simple macros-like automation as well as the full scale script based plugins by means of C# scripts.\nThe solution is based on CS-Script C# script engine.</description>
<author>Oleg Shilo</author>
<homepage>https://nppscripts.codeplex.com/</homepage>
<sourceUrl>https://nppscripts.codeplex.com/</sourceUrl>
<latestUpdate>Release v1.0.4.0\n* Migrated to CS-Script v3.17.0</latestUpdate>
<minVersion>6.4.5</minVersion>
<install>
<x64>
<download>http://www.csscript.net/npp/NppScripts.1.0.4.0.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="Plugins\NppScripts.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Plugins\NppScripts\*.dll" to="$PLUGINDIR$\NppScripts" validate="true"/>
<copy from="Plugins\NppScripts\*.zip" to="$PLUGINDIR$\NppScripts"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\NppScripts"/>
</x64>
</install>
</plugin>
<plugin name="AutoSave">
<x64Version>1.6.0</x64Version>
<aliases>
<alias name="Auto Save"/>
</aliases>
<description>AutoSave allows to automatically save the currently open files based on a timer schedule (default is 1 min) and/or upon the application losing focus. The plugin offers a couple of options to save the current (or all the files), selecting only the named ones, accessible through a menu.</description>
<author>Franco Stellari</author>
<homepage>https://sites.google.com/site/fstellari/nppplugins</homepage>
<latestUpdate>2017-02-08 Added the capability of creating a time stamped copy of current file content.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/AutoSave_dll_1v60.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="32bit\AutoSave.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Autosave2">
<x64Version>1.0.0.0</x64Version>
<description>Allows you to automatically save your Notepad++ text with a timestamp.\n\nThis plugin does create new files (ie. copies) of the currently opened files.\nThe original files will not be saved automatically. (So basically, it is more a Autocopy rather than a Autosave)\n\nUsing a timer schedule and timestamps in the newly created filenames you will have a history of changed files like this:\n\nToDo.txt.2013-04-19 10.13.09\nToDo.txt.2013-04-19 10.14.09\nToDo.txt.2013-04-19 10.15.09</description>
<author>Heinz</author>
<homepage>http://www.scout-soft.com/autosave</homepage>
<stability>Good</stability>
<install>
<x64>
<download>http://www.scout-soft.com/autosave/autosave2.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="autosave2.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="BetterMultiSelection">
<x64Version>1.3</x64Version>
<description>Provide better cursor movements when using multiple selections.</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/BetterMultiSelection</sourceUrl>
<latestUpdate>2018-09-29 \n- Add support for moving cursors up and down.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/BetterMultiSelection/releases/download/v1.3/BetterMultiSelection_v1.3.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="BetterMultiSelection.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\BetterMultiSelection.dll"/>
</x64>
</remove>
</plugin>
<plugin name="BinHex">
<x64Version>2.0.0.1</x64Version>
<description>Binhex plugin is a plugin for Notepad++ that can be use for bin/hex string manipulations such as bin hex conversion, bit shifting, grouping etc., can support very long string manipulation\n\n- FORMAT : MSB --> LSB\n- accepts prefix 0x/0b\n- select/highlight the target text then call the function through plugin menu/shortcut key assigned\n- target text will get manipulated in place</description>
<author>skycc86</author>
<homepage>https://github.com/skycc86/npp_binhex_plugin</homepage>
<sourceUrl>https://github.com/skycc86/npp_binhex_plugin</sourceUrl>
<latestUpdate>{2018-10-05] Version 2.0.0.1\n- remove default shortcut mapping that clash with npp default shortcut\n{2018-06-02] Version 2.0.0.0\n- compile for win32 and x64\n- added default shortcut key\n- added incremental search and move to other view toolbar icon\n- maintain 0x / 0b prefix</latestUpdate>
<install>
<x64>
<download>https://github.com/skycc86/npp_binhex_plugin/releases/download/v2.0.0.1/binhex_v2.0.0.1_win32.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="binhex_v2.0.0.1_win32\binhex.dll" toFile="$PLUGINDIR$\" validate="true"/>
<copy from="binhex_v2.0.0.1_win32\license.txt" toFile="$PLUGINDIR$\doc\BinHex"/>
<copy from="binhex_v2.0.0.1_win32\readme.FIRST" toFile="$PLUGINDIR$\doc\BinHex"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\BinHex"/>
</x64>
</remove>
</plugin>
<plugin name="Bookmark Manager">
<x64Version>0.1.0.97</x64Version>
<description>This plugin adds simple bookmark functionality to Notepad++.\nBasically it provides shortcuts for defining / jumping to specific bookmarks as it is incorporated in many RAD tools.</description>
<author>ViRuSTriNiTy</author>
<homepage>https://bitbucket.org/ViRuSTriNiTy/nppbookmarkmanager</homepage>
<sourceUrl>https://bitbucket.org/ViRuSTriNiTy/nppbookmarkmanager/src</sourceUrl>
<latestUpdate>- caret is now centered vertically when jumping to a bookmark</latestUpdate>
<install>
<x64>
<download>https://bitbucket.org/ViRuSTriNiTy/nppbookmarkmanager/downloads/NppBookmarkManager_0_1_0_97_Unicode.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NppBookmarkManager.dll" to="$PLUGINDIR$\"/>
<copy from="images\NppBookmarkManager\Marker\*.png" to="$PLUGINDIR$\images\NppBookmarkManager\Marker\"/>
<copy from="NppBookmarkManager\License.txt" to="$PLUGINDIR$\doc\NppBookmarkManager\"/>
<copy from="NppBookmarkManager\README.md" to="$PLUGINDIR$\doc\NppBookmarkManager\"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\images\NppBookmarkManager\Marker\*.png"/>
<delete file="$PLUGINDIR$\images\NppBookmarkManager\Marker\"/>
<delete file="$PLUGINDIR$\images\NppBookmarkManager\"/>
<delete file="$CONFIGDIR$\NppBookmarkManager\BookmarkManager.xml"/>
<delete file="$PLUGINDIR$\doc\NppBookmarkManager\*.*"/>
<delete file="$PLUGINDIR$\doc\NppBookmarkManager\"/>
</x64>
</remove>
</plugin>
<plugin name="BracketsCheck">
<x64Version>1.2</x64Version>
<description>A plugin that helps you to check if brackets in your file are balanced.\nYou can check all text in a file or only the part you selected.</description>
<author>niccord</author>
<homepage>https://github.com/niccord/BracketsCheck/</homepage>
<sourceUrl>https://github.com/niccord/BracketsCheck/</sourceUrl>
<latestUpdate>1.2.0</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/niccord/BracketsCheck/raw/master/BracketsCheck/bin/Release/BracketsCheck.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="BracketsCheck.dll" toFile="$PLUGINDIR$\"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\BracketsCheck.dll"/>
</x64>
</remove>
</plugin>
<plugin name="CCompletion">
<x64Version>1.19</x64Version>
<description>CCompletion is a code autocompletion plugin, with other useful features like listing functions / variables, quicky moving to their definition and easily returning to where you were before</description>
<author>Bostjan Mihoric</author>
<latestUpdate>1. Fixed out-of-scope indetifiers for some go-to-identifier functions.\n2. Adds support for function-like macros</latestUpdate>
<install>
<x64>
<download>http://freeweb.siol.net/rmihor/NppCCompletionPlugin.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NppCCompletionPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="ctags.exe" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Change Markers">
<x64Version>1.0</x64Version>
<dependencies>
<plugin name="SciMarkerSymbol"/>
<plugin name="Plugin Marker Margin"/>
</dependencies>
<description>This plugin tracks changes made to documents, and enables navigation between changes, with a distinction being mafe between saved and unsaved changes. The change indicator is either a bar in the left margin or a specific highlighting. Or none.</description>
<author>Thell Fowler</author>
<stability>Issues with save-all and search all open files. Can cause a hang</stability>
<install>
<x64>
<download>http://www.brotherstone.co.uk/npp/changemarker/NppPlugin_ChangeMarker_Unicode_bin.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NppPlugin_ChangeMarker.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="config\NppPlugin_ChangeMarker.xml" to="$CONFIGDIR$\" backup="true"/>
<copy from="icons\cm_notsaved.xpm" to="$PLUGINDIR$\icons"/>
<copy from="icons\cm_saved.xpm" to="$PLUGINDIR$\icons"/>
</x64>
</install>
</plugin>
<plugin name="CharM">
<description>CharM (CHARacter Map) plugin for Notepad++. Highlight a character, select Plugins->CharM->Character Map, and it will give you variations of that character. Version 0.9 is functional, although it could use some work on the interface.</description>
<author>Todd Hadley (Fidvo)</author>
<homepage>https://sourceforge.net/projects/npp-plugins/files</homepage>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/CharM/CharM%200.9/CharM_0_9_src.zip/download</sourceUrl>
<latestUpdate>[2008-02-21] v0.9</latestUpdate>
<install>
</install>
</plugin>
<plugin name="Clipboard Helper">
<x64Version>1.0</x64Version>
<description>This plugin is simular to the NPP built in Clipboard History, but allows editing of clips in history and ordering of clips.\n\nWritten in C# using the NppPlugin.NET v0.6 and therefore requires .Net 2.0 or above.\nSee https://sourceforge.net/p/notepad-plus/discussion/482781/thread/b59a9d6e/</description>
<author>John Byrne</author>
<homepage>https://github.com/Yodadude/ClipboardHelper</homepage>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/npp-plugins/ClipboardHelper/ClipboardHelper-v1.0.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ClipboardHelper.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Code alignment">
<x64Version>14.1</x64Version>
<description>Code alignment helps you present your code beautifully, enhancing clarity and readability.\n\nAlign your code by any character. Fast logical shortcuts to perform common alignments such as equals and period.\n\nRequires .NET Framework 4.0</description>
<author>Chris McGrath</author>
<homepage>http://codealignment.com</homepage>
<sourceUrl>https://github.com/cpmcgrath/codealignment</sourceUrl>
<latestUpdate>Version 14.1: 2018-12-16 \n#66 Stop working for VS2012 after V14\n#80 Add Support for Visual Studio 2019\nVersion 14: 2018-01-13 \n#64 Add Support for Notepad++ x64\n#65 Setup AppVeyor Continuous Integration Server\nVersion 13: 6 Nov 2016 Upgrade all Projects from .NET 3.5 to .NET 4 enhancement Notepad++ Visual Studio\nVersion 12: Align by string screen lets align from caret position if SHIFT is down when clicking OK\nVersion 11: Add ability to specify where to add spaces (ability to right align).</latestUpdate>
<install>
<x64>
<download>https://github.com/cpmcgrath/codealignment/releases/download/v14.1/CodeAlignmentNpp_v14.1_x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="CodeAlignmentNpp.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="CodeAlignment\CodeAlignment.Common.dll" to="$PLUGINDIR$\CodeAlignment" validate="true"/>
<copy from="CodeAlignment\CodeAlignment.Common.WinForms.dll" to="$PLUGINDIR$\CodeAlignment" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\CodeAlignment\CodeAlignment.Common.dll"/>
<delete file="$PLUGINDIR$\CodeAlignmentNpp.dll"/>
<delete file="$PLUGINDIR$\CodeAlignment\CodeAlignment.Common.WinForms.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Code::Stats">
<x64Version>1.0.1</x64Version>
<aliases>
<alias name="CodeStats"/>
</aliases>
<description>Code::Stats - Write code, level up, show off! A free stats tracking service for programmers. This plugin enables XP tracking in Notepad++.</description>
<author>p0358</author>
<homepage>https://github.com/p0358/notepadpp-CodeStats</homepage>
<sourceUrl>https://github.com/p0358/notepadpp-CodeStats</sourceUrl>
<latestUpdate>2017-12-30\n- Added the ability to change API URL in GUI\n- Added user-agent for API pulses\n- Some bug fixes</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/p0358/notepadpp-CodeStats/releases/download/v1.0.1/notepadpp-CodeStats_x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="CodeStats.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="ColdFusion Lexer">
<x64Version>0.8.1</x64Version>
<dependencies>
<plugin name="sqlite"/>
</dependencies>
<description>Syntax highlighting, Call tips (Notepad++ 5.8.4 required) and autocomplete for the ColdFusion language</description>
<author>Ben Bluemel</author>
<homepage>https://bitbucket.org/bbluemel/nppcoldfusion/overview</homepage>
<latestUpdate>* Restructured Lexer code, so lexers can be independently accessed by the plugin.\n* Utilising Scintilla's SparseStates instead of Linestate.\n* Syntax Highlighting for Local ("Var Scoped") Variables.\n* Argument autocompletion on "arguments."</latestUpdate>
<minVersion>5.8.4</minVersion>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/npp-plugins/NppColdFusion/nppColdFusion-0.8.1.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="nppColdFusion.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Config\nppColdFusion.db3" to="$CONFIGDIR$\"/>
<copy from="Config\nppColdFusion.xml" to="$CONFIGDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="Color Picker">
<x64Version>2.3</x64Version>
<description>A color picker which translates your selected colour in hexadecimal.</description>
<author>Matthew Edwards</author>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/ColorPicker/Color%20Picker%20v.2.3/colorpicker_230_src.zip</sourceUrl>
<latestUpdate>[2013-03-31]\nNew in version 2.3 \nThis is the most stable version to date. \nAdded a form displaying named colors in Delphi. \nThe form is for reference and is not interactive.</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/ColorPicker/Color%20Picker%20v.2.3/ColorPicker_230_dll.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ColorPicker.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Column sorting">
<x64Version>1.0.0.2</x64Version>
<description>Lets you sort text file based on values contained in custom defined columns (text or numeric).</description>
<author>William Blum</author>
<homepage>http://william.famille-blum.org/blog/index.php</homepage>
<sourceUrl>http://william.famille-blum.org/software/nppcolumnsort/NppColumnSort-1.0.0.2.zip</sourceUrl>
<latestUpdate>Fix intermittent crash.\nInstalls correctly with Plugin manager.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>http://william.famille-blum.org/software/nppcolumnsort/NppColumnSort-1.0.0.2.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="Unicode Release\NppColumnSort.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppColumnSort.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Combine">
<x64Version>1.0.0.0</x64Version>
<description>This plugin allows you to combine/merge all currently opened files into one file.</description>
<author>Heinz</author>
<homepage>http://www.scout-soft.com/combine</homepage>
<stability>Good</stability>
<install>
<x64>
<download>http://www.scout-soft.com/combine/combine.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="combine.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Compare">
<x64Version>2.0.0</x64Version>
<description>A very useful compare plugin to show the differences between 2 files (side by side).</description>
<author>Ty Landercasper, Jean-Sebastien Leroy, Pavel Nedev</author>
<homepage>https://github.com/jsleroy/compare-plugin</homepage>
<sourceUrl>https://github.com/jsleroy/compare-plugin</sourceUrl>
<latestUpdate>2016-12-19 Total plugin re-work. Fixed stability issues. Several new features and many improvements.</latestUpdate>
<install>
<x64>
<download>https://github.com/pnedev/compare-plugin/releases/download/v2.0.0/ComparePlugin_v2.0.0_x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ComparePlugin.dll" toFile="$PLUGINDIR$\" validate="true"/>
<copy from="ComparePlugin\*.*" to="$PLUGINDIR$\ComparePlugin\" validate="true" recursive="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ComparePlugin\"/>
</x64>
</remove>
</plugin>
<plugin name="Converter">
<x64Version>4.2.1</x64Version>
<description>Converts selected text (hexadecimal string or ASCII string) to ASCII or hexadecimal string according your choice.</description>
<author>Don Ho</author>
<homepage>https://github.com/npp-plugins/converter</homepage>
<sourceUrl>https://github.com/npp-plugins/converter</sourceUrl>
<latestUpdate>[2017-05-13] Make it compatible with old os (XP)</latestUpdate>
<install>
<x64>
<download>https://github.com/npp-plugins/converter/releases/download/v4.2.1/nppConvert.v4.2.1.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NppConverter.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\NppConverter"/>
</x64>
</install>
</plugin>
<plugin name="ConvertExt...">
<description>ConvertExt is a plugin for Notepad++ 3.5 and above. This plugin allows Notepad++ to: - view a text file in different encodings (codepages); - convert a text file from one encoding to another; - add and work with your own [external] encoding tables; - replace a typed character by another user-defined character; - autocomplete a left bracket with a corresponding right bracket</description>
<author>Dovgan Vitaliy</author>
<install>
</install>
</plugin>
<plugin name="CS-Script (C# intellisense)">
<x64Version>1.7.24.0</x64Version>
<aliases>
<alias name="CS-Script"/>
</aliases>
<description>Notepad++ plugin for CS-Script integration. \nIt implements a real C# intellisense (similar to MS IntelliSense®) solution based on CS-Script and ICSharpCode.NRefactory/Mono.Cecil. \nIt also allows loading, executing, modifying and debugging C# scripts in a way very similar to the Visual Studio C# projects support.\nThis includes referencing assemblies and other scripts, code formatting, adding missing namespaces and intercepting Debug and Console output. It also includes integrated managed debugger\nRequires .NET 4.0</description>
<author>Oleg Shilo</author>
<homepage>https://github.com/oleg-shilo/cs-script.npp/blob/master/README.md</homepage>
<sourceUrl>https://github.com/oleg-shilo/cs-script.npp</sourceUrl>
<latestUpdate>[2018-11-24] Release v1.7.24\n- Updated deployment algorithm to handle another set of breaking changes in Notepad++ v7.6 hosting model (PluginAdmin compatible).\n- Fixed script startup problem with '|' character in the DefaultRefAssemblies value.</latestUpdate>
<stability>Good</stability>
<minVersion>6.4.5</minVersion>
<install>
<x64>
<download>https://github.com/oleg-shilo/cs-script.npp/releases/download/v1.7.24/CSScriptNpp.1.7.24.0.x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="CSScriptNpp\*.*" to="$PLUGINDIR$\CSScriptNpp" validate="true" recursive="true"/>
<copy from="CSScriptNpp.dll" toFile="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\CSScriptNpp.dll"/>
<delete file="$PLUGINDIR$\CSScriptNpp\CSScriptNpp.dll"/>
<delete file="$PLUGINDIR$\CSScriptNpp"/>
</x64>
</remove>
</plugin>
<plugin name="CsvQuery">
<x64Version>1.2.6</x64Version>
<description>Enables SQL queries against CSV files</description>
<author>Joakim Wennergren</author>
<sourceUrl>https://github.com/jokedst/CsvQuery</sourceUrl>
<latestUpdate>2018-01-26\nBetter handling of quoted strings during parsing and analysis</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/jokedst/CsvQuery/releases/download/v1.2.6/CsvQuery-v1.2.6-x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="CsvQuery.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Customize Toolbar">
<x64Version>4.2</x64Version>
<description>This plugin allows the Notepad++ toolbar to be fully customised by the user, and includes twenty-nine additional buttons for frequently used menu commands.\n\nAll buttons on the toolbar can be customized, whether Notepad++ built-in buttons, the additional buttons, or buttons belonging to other plugins.\n \nCustom buttons for Notepad++ or plugin menu commands can be defined using a configuration file. It is possible to replace the icons of existing Notepad++ buttons.</description>
<author>dave-user</author>
<homepage>https://sourceforge.net/projects/npp-customize</homepage>
<latestUpdate>RELEASE NOTES\n\nNew features, changes and fixes in Version 4.2:\n\n - Chg: Changed name of .dll file from CustomizeToolbar.dll to _CustomizeToolbar.dll.\n\n - Fix: Initialization started before other plugins had added their menu items. Fixed.\n - Fix: Compiler errors due to implicit conversions from LRESULT to DWORD. Fixed.\n - Fix: Compiler error due to implicit conversion from size_t to DWORD. Fixed.</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-customize/files/Customize%20Toolbar%20v4.2/CustomizeToolbar_4_2_Win32_UNI.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="_CustomizeToolbar.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="CustomLineNumbers">
<x64Version>1.1.5</x64Version>
<description>CustomLineNumbers: A plugin to display line numbers as hex numbers. You can also configure the starting line number.</description>
<author>Andreas Heim</author>
<homepage>https://sourceforge.net/projects/customlinenumbers/</homepage>
<sourceUrl>https://sourceforge.net/projects/customlinenumbers/files/v1.1.5/src/</sourceUrl>
<latestUpdate>[2018-10-04] Fixed: Still problems with missing line numbers when changing height of Notepad++ window.</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/customlinenumbers/files/v1.1.5/plugin/x86/CustomLineNumbers_v1.1.5_UNI.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="Win32\CustomLineNumbers.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="CustomLineNumbers.txt" to="$PLUGINDIR$\doc"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\CustomLineNumbers.txt"/>
</x64>
</remove>
</plugin>
<plugin name="DBGp">
<x64Version>0.0.13.27</x64Version>
<description>This is a php debugger (XDebug) which talks DBGP protocol. Use this plugin to transform your Notepad++ to a php IDE.</description>
<author>Damjan Zobo Cvetko</author>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/DBGP%20Plugin/DBGP%20Plugin%20v0.13%20beta/DBGpPlugin_0_13b_src.zip</sourceUrl>
<latestUpdate>2012-08-25 v0.13 beta\n\nOn demand fetching of lower levels of property tree. If you set max_depth to 1\neach new level will be fetched from the debugging engine.\nUsing AutoScroll=false on forms so that ClientWidth/ClientHeight is used and\nforms look better on Windows 7.\nUpgraded to JVCL 3.45.\nAnd added fix for http://issuetracker.delphi-jedi.org/view.php?id=5023\nChecking to see if dbgp source temp file changed and not rewriting it.</latestUpdate>
<stability>Reported issues with port conflicts</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/DBGP%20Plugin/DBGP%20Plugin%20v0.13%20beta/DBGpPlugin_0_13b_dll.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="dbgpPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="DocIt">
<x64Version>0.9.1</x64Version>
<description>DocIt aids in documentation. It generates documentation templates for functions. Currently it supports C/CPP and Java. In all it gives eclipse/netbeans/vs like functionality to produce the doc strings, that can be used to generate documentation using a documentation generator like doxygen. (Can't guarantee full compatibility...it is under development)\n1. open a C/CPP/JAVA/PHP file.\n2. Go to a function defination and press CTRL+ALT+SHIFT+D and go fill the rest of the stuff....</description>
<author>Kapil Ratnani</author>
<homepage>https://sourceforge.net/projects/nppdocit/</homepage>
<sourceUrl>https://github.com/kapilratnani/DocIt</sourceUrl>
<latestUpdate>1. Fixed PHP doc string format</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/nppdocit/files/Unicode/nppdocit0_91a.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NppDocIt.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="README" to="$PLUGINDIR$\doc\NppDocIt"/>
<copy from="nppdocitplugins\nppdocitC.dll" to="$PLUGINDIR$\nppdocitplugins\"/>
<copy from="nppdocitplugins\nppdocitCPP.dll" to="$PLUGINDIR$\nppdocitplugins\"/>
<copy from="nppdocitplugins\nppdocitJava.dll" to="$PLUGINDIR$\nppdocitplugins\"/>
<copy from="nppdocitplugins\nppdocitPHP.dll" to="$PLUGINDIR$\nppdocitplugins\"/>
</x64>
</install>
</plugin>
<plugin name="Document Monitor">
<x64Version>2.2.0.0</x64Version>
<description>Document updater updates your opened documents in Notepad++ every 3 seconds</description>
<author>Don Ho</author>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/DocMonitor/</sourceUrl>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/npp-plugins/DocMonitor/DocMonitor%20v2.2/DocMonitor.v2.2.dll.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="docMonitor.unicode.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Don Rowlett Color Picker">
<x64Version>2.3</x64Version>
<aliases>
<alias name="Color Picker"/>
</aliases>
<dependencies>
<plugin name="none"/>
</dependencies>
<description>Developer tool for selecting color codes in various formats. It is not a color sampling tool.</description>
<author>Don Rowlett</author>
<minVersion>6.0</minVersion>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/ColorPicker/Color%20Picker%20v.2.3/ColorPicker_230_dll.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ColorPicker.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="DoxyIt">
<x64Version>0.4.3</x64Version>
<description>Inspired by DocIt. Generates Doxygen style comment blocks based on function/method definitions. Also provides functionality for modifying comment blocks. Configurable for each language. Current supported languages:\n* C/C++\n* Python\n* Java\n* PHP\n* JavaScript\n* C#\n* UDLs</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/doxyit</sourceUrl>
<latestUpdate>22 May 2017 Fix $FUNCTION keyword</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/DoxyIt/releases/download/v0.4.3/DoxyIt.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="DoxyIt.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\DoxyIt.dll"/>
</x64>
</remove>
</plugin>
<plugin name="DSpellCheck">
<x64Version>1.4.12</x64Version>
<description>Spell-checking plugin, with following main features:\n-Underlining spelling mistakes\n-Iterating through all mistakes in document\n-Finding mistakes only in comments and strings (For files with standard programming language syntax e.g. C++)\n-Possible usage of multiple languages (dictionaries) simultaneously to do spell-checking.\n-Getting suggestions for words by either using default Notepad++ menu or separate context menu called by special button appearing under word.\n-Able to add words to user dictionary or ignore them for current session of Notepad++\n-Using either Hunspell library (included in plugin), either Aspell library (needs to be installed), .\n-A lot of customizing available from Plugin settings (Ignoring/Allowing only specific files, Choosing delimiters for words, Maximum number of suggestions etc)\n-Support for downloading and removing Hunspell dictionaries through user friendly GUI interface\n-Ability to quickly change current language through the nice menu.</description>
<author>Sergey Semushin</author>
<homepage>https://github.com/Predelnik/DSpellCheck/releases</homepage>
<sourceUrl>https://github.com/Predelnik/DSpellCheck</sourceUrl>
<latestUpdate>2019-04-12\n* Restore Windows XP support, broken in previous 2 versions. (#170)\n* Restore showing of Hunspell dictionary list if spell-checking is turned off. (#172)\n* Several fixes for download/remove dictionary dialogs.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/Predelnik/DSpellCheck/releases/download/v1.4.12/DSpellCheck_x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="DSpellCheck.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="EditorConfig">
<x64Version>0.4.0</x64Version>
<description>EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles. EditorConfig files are easily readibly and they work nicely with version control systems.</description>
<author>Hong Xu</author>
<homepage>https://github.com/editorconfig/editorconfig-notepad-plus-plus#readme</homepage>
<sourceUrl>https://github.com/editorconfig/editorconfig-notepad-plus-plus</sourceUrl>
<latestUpdate>[2019-02-21]\n- Offer x64 build of the plugin #9\n- Convert end_of_line before saving #26\n- Add command to show current config settings #23\n- Keep folding state when saving the file #21\n- Fix property combination logic #10\n- Set syntax highlighting of the .editorconfig file to ini #17</latestUpdate>
<install>
<x64>
<download>https://github.com/editorconfig/editorconfig-notepad-plus-plus/releases/download/v0.4.0/NppEditorConfig-040-x86.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NppEditorConfig.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Ei-bericht">
<x64Version>1.6</x64Version>
<description>Highlighting for ei-berichten, making it easier to edit these files used in The Netherlands for health care claims.</description>
<author>Mark de Ronde</author>
<homepage>https://www.eibericht.nl</homepage>
<latestUpdate>v1.6: \n- Ondersteuning FZ303/304 \n- Ondersteuning JW303/304 v2 \n- Ondersteuning JW321/322 v2 \n- Ondersteuning WMO303/304 v2</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://www.eibericht.nl/eibericht16.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="eibericht.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$CONFIGDIR$\Ei-bericht.ini"/>
</x64>
</remove>
</plugin>
<plugin name="Elastic Tabstops">
<x64Version>1.3</x64Version>
<description>Implementation of Elastic Tabstops. Stretch tabs to align with adjacent lines. Can also be used for TSV files.\n\nFor more information about elastic tabstops see: \nhttp://nickgravgaard.com/elastic-tabstops/</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/ElasticTabstops</sourceUrl>
<latestUpdate>- Limit updates to only the current view region. This can lead to a significant performance increase for large files such as TSV, or when doing Search/Replace. Note: that this may case columns to change sizes while scrolling.\n- Fix issue with specifying extensions\n- Fix tab widths for proportional fonts\n- Allow elastic tabstops to be calculated for files using spaces as indentation</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/ElasticTabstops/releases/download/v1.3/ElasticTabstops.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ElasticTabstops.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ElasticTabstops.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Emmet">
<x64Version>1.0.2</x64Version>
<dependencies>
<plugin name="Python Script"/>
</dependencies>
<description>Emmet (ex-Zen Coding) is a web-developer's toolkit that can greatly improve your HTML & CSS workflow</description>
<author>Sergey Chikuyonok</author>
<homepage>http://emmet.io</homepage>
<sourceUrl>https://github.com/emmetio/npp</sourceUrl>
<latestUpdate>Fixed issues with non-Latin system user names</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>http://download.emmet.io/npp/emmet-npp.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="EmmetNPP\*.py" to="$PLUGINDIR$\EmmetNPP"/>
<copy from="EmmetNPP\*.js" to="$PLUGINDIR$\EmmetNPP"/>
<copy from="EmmetNPP\*.pyd" to="$PLUGINDIR$\EmmetNPP" validate="true"/>
<copy from="EmmetNPP\emmet\*.py" to="$PLUGINDIR$\EmmetNPP\emmet"/>
<copy from="EmmetNPP\emmet\*.js" to="$PLUGINDIR$\EmmetNPP\emmet"/>
<copy from="EmmetNPP\emmet\*.json" to="$PLUGINDIR$\EmmetNPP\emmet"/>
<copy from="EmmetNPP.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Explorer">
<x64Version>1.8.6.0</x64Version>
<description>Explorer plugin is a file browser. You can open whatever you want from it in Notepad++, just double click!</description>
<author>Jens Lorenz</author>
<homepage>https://github.com/oviradoi/npp-explorer-plugin</homepage>
<sourceUrl>https://github.com/oviradoi/npp-explorer-plugin</sourceUrl>
<latestUpdate>[2019-05-20]\n- Fix a bug when deleting an item in the Favorites panel\n\nOlder downloads from original author:\nhttp://sourceforge.net/projects/npp-plugins/files/</latestUpdate>
<install>
<x64>
<download>https://github.com/oviradoi/npp-explorer-plugin/releases/download/v1.8.6/Explorer.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="Explorer.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="External Lexer KVS">
<x64Version>1.0</x64Version>
<description>Syntax highlighting for the KVS language (KVIrc Scripting language). An example of an external lexer</description>
<author>Thell Fowler</author>
<sourceUrl>http://www.brotherstone.co.uk/npp/kvs/KVS_src.zip</sourceUrl>
<install>
<x64>
<download>http://www.brotherstone.co.uk/npp/kvs/KVS_Unicode.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ExternalLexerKVS.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Config\ExternalLexerKVS.xml" to="$CONFIGDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="F# Interactive">
<x64Version>0.1.1</x64Version>
<description>This plugin hosts F# Interactive inside Notepad++ (Note: F# should be installed separately).</description>
<author>Prapin Peethambaran</author>
<homepage>https://github.com/ppv/NPPFSIPlugin</homepage>
<sourceUrl>https://github.com/ppv/NPPFSIPlugin/tree/master/Source/Plugin</sourceUrl>
<latestUpdate>Fix for about box error in Win7 systems.</latestUpdate>
<install>
<x64>
<download>https://github.com/downloads/ppv/NPPFSIPlugin/NPPFSIPlugin.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="NPPFSIPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Falling Bricks">
<x64Version>1.1.0.0</x64Version>
<description>This plugin for Notepad++ is a simple tetris-like game that you can play from within Notepad++.The rules are exactly the same, so I hope no explanation is needed :-P This is the most bare-basic implementation of tetris, so don't expect any fancy 3D graphics or surround sound effects. If you close the dialog box of this plugin (maybe your boss just appeared?), the game will auto pause, and you can resume from where you last left it. Your high scores are not remembered, So please scribble it into Notepad++ yourself!</description>
<author>loonychewy</author>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/npp-plugins/FallingBricks/FallingBricks%201.1%20UNI/fallingbricks_v1.1_unicode_dll.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="FallingBricks.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="change.log" to="$PLUGINDIR$\doc\FallingBricks"/>
<copy from="license.txt" to="$PLUGINDIR$\doc\FallingBricks"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\FallingBricks"/>
</x64>
</install>
</plugin>
<plugin name="File Switcher">
<x64Version>1.0.3.0</x64Version>
<description>This plugin allows you to switch the active buffer using just the keyboard. You can type any part of the filename, path or tab index. You can also use it as a replacement for the Ctrl-Tab functionality built into Notepad++.</description>
<author>Dave Brotherstone</author>
<homepage>https://github.com/bruderstein/FileSwitcher</homepage>
<sourceUrl>http://www.brotherstone.co.uk/npp/FileSwitcher_src.zip</sourceUrl>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/npp-plugins/File%20Switcher/FileSwitcher%201.0.3.0/FileSwitcher1030_UNI.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="FileSwitcher.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="FingerText">
<x64Version>0.5.60</x64Version>
<description>A Snippet plugin with support for multiple hotspots. Set the shortcut to Tab and remove from the Scintilla tab command for best usage.</description>
<author>Tom Lam</author>
<homepage>https://sourceforge.net/projects/fingertext/</homepage>
<sourceUrl>https://github.com/erinata/FingerText</sourceUrl>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/fingertext/Alpha%20Releases/FingerText%20-%200.5.60.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="FingerText.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Readme.rdoc" to="$PLUGINDIR$\doc\FingerText"/>
</x64>
</install>
</plugin>
<plugin name="FTP_synchronize">
<x64Version>0.9.6.2</x64Version>
<description>**Replaced by NppFTP - please install that instead**\n\n A FTP client which is integrated in Notepad++ seamlessly. Open a php file from a server of distance, modify it, save it and try it on your browser directly just like you work locally.</description>
<author>Harry B, unofficial patch by XianJun Zhang</author>
<latestUpdate>Unofficial patch to fix some issues</latestUpdate>
<stability>Some issues</stability>
<install>
<x64>
<download>http://www.brotherstone.co.uk/npp/FTP_Synchronise/FTP_synchronize_amend.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="FTP_synchronize.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Function List">
<x64Version>2.1.0.0</x64Version>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/Function%20List/FunctionList%20Plugin%20v2.1/FunctionList_2_1_src.zip</sourceUrl>
<latestUpdate>[2010-02-18] v2.1</latestUpdate>
<stability>Occasional issues</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/Function%20List/FunctionList%20Plugin%20v2.1/FunctionList_2_1_UNI_dll.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="Config/C++.flb" to="$CONFIGDIR$\"/>
<copy from="Config/FunctionListRules.xml" to="$CONFIGDIR$\"/>
<copy from="FunctionList.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Config/Gmod Lua.bmp" to="$CONFIGDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="GEDCOM Lexer">
<x64Version>0.3.3.100</x64Version>
<aliases>
<alias name="GedcomLexer"/>
</aliases>
<description>View & edit GEDCOM files with syntax highlighting of: level, xref id, tag, pointer, value and escape tokens. Customize coloration and font styles. Grammar errors are also highlighted. View GEDCOM files in outline mode by folding sections based on line level.</description>
<author>Stan Mitchell</author>
<homepage>http://www.genapps.net</homepage>
<sourceUrl>http://sourceforge.net/projects/gedcomlexer/</sourceUrl>
<latestUpdate>2017-01-13 version 0.3.3.100\n- Fix lexer bug: underscore ('_') is now accepted as a valid character in identifiers and pointers.\n- Fix folding bugs: fold headers are now consistently placed throughout a GEDCOM file.\n- Fix lexer bug: multi-byte UTF-8 code points and other MBCS code points are no longer flagged as invalid in values.</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/gedcomlexer/files/GedcomLexer-0.3.3-r100/GedcomLexer-0.3.3-r100.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="gedcomlexer.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Config\GedcomLexer.xml" to="$CONFIGDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Gmod Lua Lexer">
<x64Version>1.5</x64Version>
<aliases>
<alias name="Gmod Lua"/>
<alias name="Gmod 10 Lua Lexer"/>
</aliases>
<description>A Garry's Mod 10 lua syntax highlighter plugin. It's also a good demonstration of syntax highlighter plugins for Notepad++.</description>
<author>Kyle Fleming (aka Garthex)</author>
<homepage>https://code.google.com/p/npp-gmod-lua/</homepage>
<sourceUrl>https://code.google.com/p/npp-gmod-lua/downloads/list?q=label:Type-Source</sourceUrl>
<latestUpdate>(Notes for v1.5)\n- Revamped plugin for Scintilla's new external lexer interface\n- Did some hacky stuff to keep backwards compatibility\n- Updated keyword list</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/Gmod%20Lua%20Highlighter/Gmod%20Lua%20v1.5/NppGmodLuaPlugin-v1.5.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="doc\GmodLua-readme.txt" to="$PLUGINDIR$\doc"/>
<copy from="Config\GmodLua.xml" to="$PLUGINDIR$\Config"/>
<delete file="$PLUGINDIR$\Config\GmodLua.xml"/>
<copy from="GmodLua.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="Config\GmodLua.xml" to="$CONFIGDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="GOnpp">
<x64Version>1.2.0.0</x64Version>
<description>GOnpp assists you writing Go-programms. It has code completion and function calltips (using gocode, see below) as well as direct interaction with the go command. Currently the following actions are implemented:\ngocode complete -> ALT+O || gocode calltip -> ALT+P\ngo fmt -> ALT+F || go test -> ALT+T || go install -> ALT+I || go run -> ALT+R\n\nPlease note, that you must have the GO programming language installed on your computer to make use of GOnpp. You can get GO from http://golang.org/doc/install\n\nTo use the code-completion you need to have gocode installed and located either in your PATH or in GOROOT/bin. You can get gocode from https://github.com/nsf/gocode!</description>
<author>tike</author>
<homepage>https://github.com/tike/GOnpp</homepage>
<sourceUrl>https://github.com/tike/GOnpp</sourceUrl>
<latestUpdate>28.03.2014 (v1.2.0.0)\n- gocode integration (complete with calltips)\n- Thanks Mateusz!\n\n19.02.2014 (v1.1.0.0)\n- minor fixes, see git repo for details\n\n24.01.2014 (v1.0.0.0 )\n- inital release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/gonpp/files/GOnpp_1.2_UNI.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="GOnpp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="GrepBugs">
<x64Version>1.0.0</x64Version>
<description>The plugin will download the latest regular expressions from GrepBugs.com and grep for matches in all open files. Requires .NET 4+</description>
<author>Peter Parker</author>
<homepage>https://grepbugs.com/plugins</homepage>
<sourceUrl>https://github.com/foospidy/GrepBugsPluginNotepadPlusPlus</sourceUrl>
<latestUpdate>Initial release.</latestUpdate>
<install>
<x64>
<download>https://grepbugs.com/plugin/notepad%2B%2B!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="GrepBugsPluginNpp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\GrepBugsPluginNpp.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Gtag Search">
<x64Version>0.4</x64Version>
<description>A plugin for a gtags and ctags based search for Notepad++. You need to run "ctags -R" and "gtags" from your code root.</description>
<author>Mohan Kumar S</author>
<homepage>https://gtagfornplus.sourceforge.net/</homepage>
<sourceUrl>https://gtagfornplus.svn.sourceforge.net/viewvc/gtagfornplus/</sourceUrl>
<install>
<x64>
<download>https://sourceforge.net/projects/gtagfornplus/files/gtagfornplus/3-Alpha/gtagfornplus_release.zip/download!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="gtagfornplus.dll" to="$PLUGINDIR$\" validate="true"/>
<download>http://www.brotherstone.co.uk/npp/global/glo574wb.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="bin\global.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
<copy from="bin\gozilla.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
<copy from="bin\gtags-cscope.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
<copy from="bin\gtags-parser.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
<copy from="bin\gtags.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
<copy from="bin\htags.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
<download>https://downloads.sourceforge.net/sourceforge/ctags/ctags58.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ctags58\ctags.exe" to="$PLUGINDIR$\gtagfornplus" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="GuidGuard">
<x64Version>1.0</x64Version>
<description>GuidGuard: a plugin that generates C++ style header include guards, using GUIDs for the guard identifier - this ensures you won't have identifier clashes even in larger projects, which traditional filename-based guards theoretically risk.</description>
<author>f0dder</author>
<homepage>http://f0dder.dcmembers.com/nppplugs.index.php</homepage>
<install>
<x64>
<download>http://f0dder.dcmembers.com/nppplugs/npp_plugins.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="unicode\guidguard.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\Guidguard"/>
</x64>
</install>
</plugin>
<plugin name="HEX-Editor">
<x64Version>0.9.5.0</x64Version>
<description>Some reported issues, however many bugs fixed in latest release</description>
<author>Jens Lorenz</author>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/</sourceUrl>
<latestUpdate>Fix: Menu of Npp++ isn't displayed properly after using hex [NPP-P-B-2799622] \nFix: HEX v0.9.3 forgets scroll position when switching tabs [NPP-P-B-2721661] \nFix: "Repleace" misspell in HEX-Editor plugins Help dialog [NPP-P-B-2351008] \nFix: Opening a file from outside with enabled Hex-Mode cause graphic issues. \nFix: "Go to another view" causes a crash if no document is opened. \nFix: Compare has no limitations anymore. \nFix: Bookmark color wasn't stored. \nFix: Restriction of Simple Compare removed. \nFix: Paste of data into combo box of Find dialog doesn't work in ANSI/HEX mode \nNew: Changed Bookmark style. \nNew: Shortcuts for Undo, Redo, Copy, Cut, Paste and Select All are now in sync with the Notepad++ shortcuts.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://downloads.sourceforge.net/project/npp-plugins/Hex%20Editor/Hex%20Editor%20Plugin%20v0.9.5/HexEditor_0_9_5_UNI_dll.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="HexEditor.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="HTML Tag">
<x64Version>1.1.0.0</x64Version>
<description>This plug-in provides three core functions to Notepad++:\n- HTML and XML tag jumping, like the built-in brace matching (Ctrl+B / Shift+Ctrl+B), and selection\n of tags and/or contents.\n- HTML entity encoding/decoding (example: é to &eacute;)\n- JS character encoding/decoding (example: é to \u00E9)</description>
<author>Martijn Coppoolse</author>
<homepage>https://fossil.2of4.net/npp_htmltag/</homepage>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/HTMLTag/HTMLTag%20plugin%20v1.0.0/HTMLTag_plugin_v1.0.0_src.zip/download</sourceUrl>
<latestUpdate>[Version 1.1.0 - 2017-09-04 20:15]\n * Added: option to encode line break entities as well\n * Fixed: decoding a JS escape reduced the selection by one each time</latestUpdate>
<install>
<x64>
<download>https://fossil.2of4.net/npp_htmltag/doc/v1.1.0/publish/HTMLTag_plugin_latest_unicode.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="HTMLTag_unicode.dll" to="$PLUGINDIR$\" validate="true" backup="true"/>
<copy from="HTMLTag-entities.ini" to="$PLUGINDIR$\" backup="true"/>
<copy from="Config/HTMLTag.ini" to="$CONFIGDIR$\" backup="true"/>
<copy from="Doc/HTMLTag-readme.txt" toFile="$CONFIGDIR$\Doc\HTMLTag-readme.txt"/>
</x64>
</install>
</plugin>
<plugin name="ImgTag">
<x64Version>2.0.1</x64Version>
<description>ImgTag allows to insert img tags, in your html document, using the Open File Dialog Box to select image files.</description>
<author>salvom</author>
<homepage>https://sourceforge.net/projects/imgtag/</homepage>
<sourceUrl>https://sourceforge.net/projects/imgtag/files/</sourceUrl>
<latestUpdate>2013-07-07\nversion 2.0.1 \n--Fixed a bug: now the images are shown entirely with the "Show Image" command. \n\nversion 2.0 \n---ImgTag was rewritten in C#. This version requires the .net framework 2.0 or above. Now it's possible: to resize the image, to update the image size to the actual size, to show the image, to rename the image.</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/imgtag/files/ImgTag_binary_unicode_2.0.1.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="ImgTag.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\ImgTag"/>
</x64>
</install>
</plugin>
<plugin name="Indent By Fold">
<x64Version>0.7.1</x64Version>
<description>IndentByFold plugin for Notepad++ to Indent using Fold points\n\nNote: Disable Notepad++'s Auto Indent in Settings - Preferences - MISC - Untick Auto Indent.</description>
<author>Ben Bluemel, Frank Fesevur</author>
<homepage>https://github.com/ffes/indentbyfold/</homepage>
<sourceUrl>https://github.com/ffes/indentbyfold/</sourceUrl>
<latestUpdate>Version 0.7.1, 2013-04-17\n\n* Frank Fesevur has taken over the maintenance of this plug-in.\n* Fixed: Reindent file is now one undo action.\n* Fixed: Disabled "Reindent File" for Python.\n* Restructured the source files to personal preference.\n* Solution files for VS2005 are provided as well.\n* Started to write documentation using DocBook.</latestUpdate>
<install>
<x64>
<download>https://github.com/ffes/indentbyfold/releases/download/v0.7.1/IndentByFold-071.zip!!!ADAPT_LINK_FOR_X64!!!</download>
<copy from="IndentByFold.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="ReadMe.pdf" to="$PLUGINDIR$\doc\IndentByFold"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\IndentByFold\ReadMe.pdf"/>