-
Notifications
You must be signed in to change notification settings - Fork 36
/
plugins64.xml
1543 lines (1543 loc) · 99.2 KB
/
plugins64.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>
<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_x64.zip</download>
<copy from="3P.dll" to="$PLUGINDIR$\" validate="true"/>
<run file="NetFrameworkChecker.exe" arguments="-ShowOnlyIfNotInstalled" outsideNpp="0"/>
</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>
<versions>
<version number="1.1.8.5" md5="5c22d81a2f510778d3e9b80542ee7da1"/>
</versions>
<latestUpdate>[2020-03-12] Bugfixes and x64 version.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/nppactivexplugin/files/bin/ActiveX_x64_1_1_8_5.zip/download</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>
<versions>
<version number="1.11.34" md5="56a19878b902d25d0c1b12b33d3ba44a"/>
<version number="1.11.37" md5="b8dfbf18248c53b9d7e368e013590b55"/>
</versions>
<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-x64.zip</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" isDirectory="true"/>
<delete file="$PLUGINDIR$\AnalysePlugin\AnalysePlugin.dll"/>
</x64>
</remove>
</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/x64/AutoCodepage_v1.2.3_x64_PA.zip</download>
<copy from="AutoCodepage.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="AutoCodepage.txt" to="$PLUGINDIR$\doc" validate="false"/>
</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/x64/AutoEolFormat_v1.0.1_x64_PA.zip</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="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</download>
<copy from="64bit\AutoSave.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_x64.zip</download>
<copy from="BetterMultiSelection_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\BetterMultiSelection_64.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_x64.zip</download>
<copy from="binhex_v2.0.0.1_x64\binhex.dll" toFile="$PLUGINDIR$\" validate="true"/>
<copy from="binhex_v2.0.0.1_x64\license.txt" toFile="$PLUGINDIR$\doc\BinHex"/>
<copy from="binhex_v2.0.0.1_x64\readme.FIRST" toFile="$PLUGINDIR$\doc\BinHex"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\BinHex"/>
</x64>
</remove>
</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_x64.zip</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_x64.zip</download>
<copy from="CodeStats.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_X64.zip</download>
<copy from="ComparePlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="ComparePlugin\*.*" to="$PLUGINDIR$\ComparePlugin\" validate="true" recursive="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ComparePlugin\" isDirectory="true"/>
</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.x64.zip</download>
<copy from="NppConverter.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\NppConverter"/>
</x64>
</install>
</plugin>
<plugin name="CS-Script (C# intellisense)">
<x64Version>1.7.25.1</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/1.7.25.1/CSScriptNpp.1.7.25.1.x64.zip</download>
<copy from="CSScriptNpp\*.*" to="$PLUGINDIR$\CSScriptNpp" validate="true" recursive="true"/>
<copy from="CSScriptNpp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\CSScriptNpp\CSScriptNpp.dll" />
<delete file="$PLUGINDIR$\CSScriptNpp" isDirectory="true" />
</x64>
</remove>
</plugin>
<plugin name="CsvQuery">
<x64Version>1.2.6</x64Version>
<description>Enables SQL queries against CSV files</description>
<author>jokedst</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-x64.zip</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. All 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>[email protected]</author>
<homepage>https://sourceforge.net/projects/npp-customize</homepage>
<latestUpdate>Version 4.2. Changed name of .dll file from CustomizeToolbar.dll to _CustomizeToolbar.dll. Minor bug fixes.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-customize/files/Customize%20Toolbar%20v4.2/CustomizeToolbar_4_2_x64_UNI.zip/download</download>
<copy from="_CustomizeToolbar.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\_CustomizeToolbar.dll"/>
</x64>
</remove>
</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/x64/CustomLineNumbers_v1.1.5_x64.zip</download>
<copy from="Win64\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="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_64.zip</download>
<copy from="DoxyIt_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\DoxyIt_64.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_x64.zip</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-x64.zip</download>
<copy from="NppEditorConfig.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</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_64.zip</download>
<copy from="ElasticTabstops_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ElasticTabstops_64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Explorer">
<x64Version>1.8.8.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>[2020-01-18]\n- Added Favorites button to Explorer dialog dockable menu. Thanks vinsworldcom for the PR.\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.8/Explorer_x64.zip</download>
<copy from="Explorer.dll" to="$PLUGINDIR$\" validate="true"/>
</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://github.com/chcg/NPP_HexEdit</sourceUrl>
<latestUpdate>[2018-02-11] Unofficial port for x64 version\nFix: 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://github.com/chcg/NPP_HexEdit/releases/download/0.9.5.19/HexEditor_0.9.5.19_x64.zip</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_64.zip</download>
<copy from="HTMLTag.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>2018-01-22 Unofficial port for x64 version\n2013-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://github.com/chcg/ImgTag/releases/download/2.0.1.8/ImgTag_2.0.1.8_x64.zip</download>
<copy from="ImgTag.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\ImgTag"/>
</x64>
</install>
</plugin>
<plugin name="JavaScript Map Parser">
<x64Version>4.2</x64Version>
<description>This is an extension for for better JavaScript support. It provides a panel with hierarchy structure of functions in your js file.</description>
<author>Oleksandr Boiko</author>
<homepage>https://github.com/megaboich/js-map-parser/</homepage>
<sourceUrl>https://github.com/megaboich/js-map-parser/</sourceUrl>
<latestUpdate>2017-12-19 Version 4.2\n- updated dllexport data for x64 builds\n- updated used nuget packages\n- updated ilmerge tool\n- updated to dotnet framework 4\n- appveyor.yml CI for VS2015 and VS2017\n\nVersion information:\nhttps://github.com/megaboich/js-map-parser/wiki/Version-History</latestUpdate>
<stability>Good</stability>
<minVersion>6.5</minVersion>
<install>
<x64>
<download>https://github.com/megaboich/js-map-parser/releases/download/4.2/JsMapParser_NppPlugin_4_2_x64.zip</download>
<copy from="JsMapParser.NppPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="jN Notepad++ Plugin">
<x64Version>2.2.185.5</x64Version>
<description>jN (JavaScript for Notepad++) allows you to extend Notepad++ by using JavaScript.\n- You can create new menu elements which execute JavaScript\n- You can use a lot of ActiveX components available on your PC\n- You can add shortcuts executing JavaScript\n- You can create Html based dialogs and docking windows\n- You can write JavaScript wrappers around Win32 API\n - Since version 2.0.116 you can debug your automating scripts\n - Selection highlighting and navigation bar\n - Integrated Zen Coding v0.7\n - You can catch context menu request and create your own</description>
<author>Eugen Kremer</author>
<homepage>https://github.com/sieukrem/jn-npp-plugin/wiki</homepage>
<sourceUrl>https://github.com/sieukrem/jn-npp-plugin</sourceUrl>
<latestUpdate>[2018-11-27]\n- Adapted zip file content accordingly to requirements of plugin admin.\n- Fixed #71\n \n[2018-06-24] \nUpdate dll file properties.\nFix #68 About dialog displays no longer available domain\nFix #32 x64</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/sieukrem/jn-npp-plugin/releases/download/2.2.185.5/jN_2.2.185.5_x64.zip</download>
<copy from="jN.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="jN\*.*" to="$PLUGINDIR$\jN" recursive="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\jN"/>
</x64>
</install>
</plugin>
<plugin name="JSON Viewer">
<x64Version>1.34</x64Version>
<aliases>
<alias name="JSONViewer"/>
</aliases>
<description>A JSON viewer plugin for notepad++. Displays the selected JSON string in a tree view.</description>
<author>Kapil Ratnani</author>
<homepage>https://github.com/kapilratnani/JSON-Viewer</homepage>
<sourceUrl>https://github.com/kapilratnani/JSON-Viewer</sourceUrl>
<latestUpdate>[2019-04-25]\n- Fix bug which resulted in "Access Violation" when the root element is an Array</latestUpdate>
<install>
<x64>
<download>https://github.com/kapilratnani/JSON-Viewer/releases/download/1.34/NPPJSONViewer_X64.zip</download>
<copy from="NPPJSONViewer.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NPPJSONViewer.dll"/>
</x64>
</remove>
</plugin>
<plugin name="JSTool">
<x64Version>1.19.05.1</x64Version>
<aliases>
<alias name="JSMin"/>
</aliases>
<description>A javascript plugin for Notepad++.\n * Douglas Crockford's JSMin algorithm to minimize javascript code.\n * My own algorithm to format javascript code.\n * A JSON data viewer. This JSON data viewer can handle >10MB JSON file easily.\n * Support 64bit Notepad++ (from version 1.20.0, ".64.zip" package).\nReally helpful to javascript coder on Notepad++ and really easy to use it.\nMade in China.</description>
<author>Sun Junwen</author>
<homepage>http://www.sunjw.us/jstoolnpp</homepage>
<sourceUrl>https://github.com/sunjw/jstoolnpp</sourceUrl>
<latestUpdate>[2019-05-15]\n1.1905.1\nChange default settings.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/jsminnpp/files/Uni/JSToolNPP.1.1905.1.uni.64.zip</download>
<copy from="JSMinNPP.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="LanguageHelp">
<x64Version>1.7.2</x64Version>
<aliases>
<alias name="Language Help"/>
</aliases>
<description>LanguageHelp allows to run a language specific help file (CHM, HLP, PDF) and search for the keyword under the cursor. The latest versions allow also to show the help file as menu entries for quick launch.</description>
<author>Franco Stellari</author>
<homepage>https://sites.google.com/site/fstellari/nppplugins</homepage>
<latestUpdate>2017-02-14 Improve detection of context menu.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/LanguageHelp_dll_1v72.zip</download>
<copy from="64bit\LanguageHelp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Linter">
<x64Version>0.1.0.0</x64Version>
<description>A Notepad++ plugin that allows realtime code check against any checkstyle-compatible linter: jshint, eslint, jscs, phpcs, csslint and many others.</description>
<author>Vladimir Soshkin</author>
<homepage>https://github.com/deadem/notepad-pp-linter</homepage>
<install>
<x64>
<download>https://github.com/deadem/notepad-pp-linter/raw/v0.1.0.0/bin/x64/linter.zip</download>
<copy from="linter.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="LuaScript">
<x64Version>0.8</x64Version>
<description>Plugin for Lua scripting capabilities. Provides control over all of Scintilla's features and options with a light-weight, fully-functional programming language.</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/LuaScript</sourceUrl>
<latestUpdate>2018-09-29\n - Added luawinfile module which supports file-system interactions. This can be accessed in LuaScript by using winfile\n- Overhauled the auto-completion to dynamically handle tables and their associated meta-tables.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/LuaScript/releases/download/v0.8/LuaScript_v0.8_x64.zip</download>
<copy from="LuaScript_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\LuaScript_64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="MarkdownViewer++">
<x64Version>0.8.2</x64Version>
<aliases>
<alias name="MarkdownViewerPlusPlus"/>
<alias name="MarkdownViewer++"/>
</aliases>
<description>View a Markdown/CommonMark compliant text file rendered on-the-fly directly in Notepad++ in a docked panel.\nExport the rendered result as HTML or PDF and configure the file extensions to be rendered.</description>
<author>nea</author>
<homepage>https://nea.github.io/MarkdownViewerPlusPlus/</homepage>
<sourceUrl>https://github.com/nea/MarkdownViewerPlusPlus</sourceUrl>
<latestUpdate>* Merged a lot of bugfixes and improvements, thanks to monoblaine\n* Updated Markdig to v0.15.0, PDFSharp to v1.50.4845-RC2a and HTMLRenderer accordingly\n* Added a shortcut to Options and About to MarkdownViewerPanel</latestUpdate>
<stability>Good</stability>
<minVersion>7.5</minVersion>
<install>
<x64>
<download>https://github.com/nea/MarkdownViewerPlusPlus/releases/download/0.8.2/MarkdownViewerPlusPlus-0.8.2-x64.zip</download>
<copy from="MarkdownViewerPlusPlus.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.md" to="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
<copy from="license\*.txt" to="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
<copy from="license\*.md" to="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\MarkdownViewerPlusPlus.dll"/>
<delete file="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
</x64>
</remove>
</plugin>
<plugin name="Menu Icons">
<x64Version>1.2.2</x64Version>
<aliases>
<alias name="MenuIcons"/>
</aliases>
<description>MenuIcons allows to add icons to both main and context menu. Several options are available to load the icons from a folder. More than provide a full set of icons, it's design to enable people to create their own set of icon themes.\nNote: the plugin does not work correctly on WinXP.\n\nAlternative icon sets: English by Yaron, Hebrew by Yaron.\nJust download them and replace the MenuIcon folder or save them somewhere else and set the new folder in the Menu Icons plugin options.</description>
<author>Franco Stellari</author>
<sourceUrl>https://sites.google.com/site/fstellari/nppplugins</sourceUrl>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/MenuIcons_dll_1v22.zip</download>
<copy from="64bit\MenuIcons.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="MenuIcons\*.*" to="$PLUGINDIR$\MenuIcons" recursive="true"/>
</x64>
</install>
</plugin>
<plugin name="MIME Tools">
<x64Version>2.5</x64Version>
<description>Converts to and from Base64 as well as Quoted Printable formats. This is suitable to process texts from emails or to be emailed.</description>
<author>Don Ho</author>
<homepage>https://github.com/npp-plugins/mimetools</homepage>
<sourceUrl>https://github.com/npp-plugins/mimetools</sourceUrl>
<latestUpdate>[2019-02-28] Fix access violation in URL decoding command #8</latestUpdate>
<install>
<x64>
<download>https://github.com/npp-plugins/mimetools/releases/download/v2.5/mimetools.v2.5.x64.zip</download>
<copy from="mimeTools.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\mimeTools"/>
</x64>
</install>
</plugin>
<plugin name="MusicPlayer">
<x64Version>1.0.0.3</x64Version>
<description>It's a plug in to open and play music files.\nSupports:\n*.wav\n*.mp3\n*.aiff\n*.wma</description>
<author>Jon Galletero</author>
<homepage>https://sourceforge.net/projects/nppmusicplayer</homepage>
<sourceUrl>https://github.com/gallettube/MusicPlayer</sourceUrl>
<latestUpdate>03-02-2018\n- Updated version for x86 and x64\n\n01-06-2015 (v1.0.0.3)\n- Menu improved\n- Donate function\n- Replace library to test\n\n31-05-2015 (v1.0.0.2)\n- Open FileS\n\n31-05-2015 (v1.0.0.1)\n- Initial release\n- Open File\n- Song</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/gallettube/MusicPlayer/releases/download/1.0.11/MusicPlayer_1.0.11x64.dll.zip</download>
<copy from="MusicPlayer_1.0.11x64.dll" to="$PLUGINDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="NavigateTo">
<x64Version>1.12.4.1</x64Version>
<description>Do you have more then 10 open tabs? than this plugin is for you.\n\nNavigate To is a new and efficient way to quickly navigate between tabs(files) in your Notepad++. It allows you to search for a symbol or filename, filepath by matching against a keyword you type in, and get a real time preview while going through the search results by Shift key.\nAnd YES indeed you can uncheck the Multi-line option, in the Preferences > General > Tab Bar zone because you don’t need the multi-lines tab feature anymore :)\n\nAuthor: Oleksii Maryshchenko\nEmail: [email protected]</description>
<author>Oleksii Maryshchenko</author>
<homepage>https://github.com/young-developer/nppNavigateTo</homepage>
<sourceUrl>https://github.com/young-developer/nppNavigateTo</sourceUrl>
<latestUpdate>13-03-2018 Version 1.12.4\n-Issues #8 , #9 were resolved.\n-Ctrl+A functionality was restored.\n\nVersion 1.12.3\n-Crash in x32bit version was fixed.\n--\n**New features and enhancements:**\n- Right-click context menu for files like in NPP was added.\n- File preview functionality was added.\n- Minimum window size was set to 400x200\n- New column 'View' was added.\n- Number of matching results was moved to form title.\n- File status functionality was implemented:\nBlack - SAVED\nRed - UNSAVED\nGrey - READONLY \n\n**Bugs:** \n- Unicode search, open and highlight bugs(filenames and paths with letters like é, à or else ) were fixed.\n- Filter editbox could not be unfocused now. \n\n**Other:**\n- Filter is case insensitive and highlight only first sub-string match. \n\n**Tips & Tricks** \n- Hold <kbd>ALT</kbd> and press <kbd>↑</kbd> or <kbd>↓</kbd> to open search history.\n- Open NavigateTo form and then hold <kbd>SHIFT</kbd> and press <kbd>↑</kbd> or <kbd>↓</kbd> to preview files.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/young-developer/nppNavigateTo/releases/download/1.12.4/NavigateTo_x64.zip</download>
<copy from="bin64\NavigateTo.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NavigateTo.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Notepad#">
<x64Version>1.5.0</x64Version>
<description>General plugin (proper new line handling, comments, indenting etc)\n\n Implemented so far:\n\n- Proper new line inside CommentDoc/DocBlock for C, C++, Javascript, PHP\n- Proper new line for # comment in Ruby\n- Indent after opening curly brace for C-like languages, CSS\n and proper indenting for closing curly brace\n- Delete current line keeping the column\n- Undo closed tab\n- Switching tabs with ALT + LEFT/RIGHT\n- Wrap selection with Open/Close tag\n- Url encode/decode selection\n- Autoclose embeded script tags for ruby and php (<% | <?)\n- Column ruler\n- Indent after opened tag - XML, HTML and PHP\n- Close last open tag\n- Autonumbering inside CommentDoc/DocBlock and # comment\n- Indent after instruction for Ruby - module|class|def|do|if|else|elsif|private\n- Match "end" indentation for Ruby\n- Autocomplete CommentDoc/DocBlock keywords\n- Peek CSS hex colors\n- Scroll past end of file\n- Convert leading TABS to Spaces and reverse\n- Paste indented\n- Double click edit tag</description>
<author>jvdanilo</author>
<homepage>https://github.com/jvdanilo/NotepadSharp</homepage>
<sourceUrl>https://github.com/jvdanilo/NotepadSharp</sourceUrl>
<stability>No longer available</stability>
<install>
<x64>
<download>https://github.com/chcg/NotepadSharp/releases/download/1.5.0/NotepadSharp_1.5.0_x64.zip</download>
<copy from="bin64/NotepadSharp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NotepadSharp.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Notepad++ bplist plugin">
<x64Version>1.2.0.4</x64Version>
<description>This plugin supports viewing\editing binary plist files. As long as ordinary plist files comes in XML format, this plugin dont supports them. It loads only binary plist files ( bplist ).</description>
<author>azerg</author>
<homepage>http://blog.azerg.com/</homepage>
<sourceUrl>https://github.com/azerg/NppBplistPlugin</sourceUrl>
<latestUpdate>07.27.2017 (v1.2.0.4)\n- binary version fix\n01.27.2017 (v1.2.0.3)\n- Thanks @chcg , added x64 build.\n01.25.2017 (v1.2.0.0)\n- + ability to distinguish between bplist files and ordinary xmls via plugin menu.\n02.05.2015 (v1.0.1.4)\n- Initial release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/azerg/NppBplistPlugin/releases/download/1.2.0.4/NppBplistPlugin_x64.zip</download>
<copy from="NppBplistPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NotepadStarterPlugin">
<x64Version>2.3.2.0</x64Version>
<description>This tool designed as a Notepad++ plugin by [Yonggang Luo](luoyonggang(at)gmail.com), when\nit installed as a Notepad++ plugin or running NotepadStarter.exe in the Notepad++ app\ndirectory, it's will automatically replace the system default notepad.exe application with\nNotepad++ (Without need for removing anything from the windows system.). It's tested\nunder Windows 7, but Windows XP should also works.</description>
<author>Yonggang Luo</author>
<homepage>https://github.com/lygstate/NotepadStarter/</homepage>
<sourceUrl>https://github.com/lygstate/NotepadStarter/archive/2.3.2.0.zip</sourceUrl>
<latestUpdate>2018-02-09\nRelease 2.3.2</latestUpdate>
<stability>Good</stability>
<minVersion>5.0</minVersion>
<install>
<x64>
<download>https://github.com/lygstate/NotepadStarter/releases/download/2.3.2.0/NotepadStarter_2.3.2.0_x64.zip</download>
<copy from="NotepadStarterPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="NotepadStarter\NotepadStarter.exe" to="$PLUGINDIR$\NotepadStarter\" validate="true"/>
<copy from="NotepadStarter\NotepadStarterInstall.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\NotepadStarterReplacer.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\NotepadStarterUninstall.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\readme.md" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\request-admin.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<run file="NotepadStarter\NotepadStarter.exe" arguments=":install-registry" outsideNpp="0"/>
</x64>
</install>
<remove>
<x64>
<run file="$PLUGINDIR$\NotepadStarter\NotepadStarter.exe" arguments=":uninstall" outsideNpp="1"/>
</x64>
</remove>
</plugin>
<plugin name="Npp Xml Treeview">
<x64Version>2.0.0</x64Version>
<aliases>
<alias name="Npp Xml Treview"/>
</aliases>
<description>A treeview visualization for xml files.</description>
<author>João Rosa</author>
<sourceUrl>https://github.com/joaoasrosa/nppxmltreeview</sourceUrl>
<latestUpdate>This release address the problems with version mismatches, reported by several users (#26, #27, #29, #30).\nWe also improve the plugin, removing some API contracts, adding behavioral tests and logging. Also, a consistent way of building the plugin was created, using Cake.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/joaoasrosa/nppxmltreeview/releases/download/v2.0.0/NppXMLTreeViewPlugin_x64.zip</download>
<copy from="NppXmlTreeviewPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="NppXmlTreeviewPlugin\NppXmlTreeviewPlugin.Parsers.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
<copy from="NppXmlTreeviewPlugin\Serilog.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
<copy from="NppXmlTreeviewPlugin\Serilog.Sinks.File.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
<copy from="NppXmlTreeviewPlugin\Serilog.Sinks.RollingFile.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\NppXmlTreeviewPlugin.Parsers.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\Serilog.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\Serilog.Sinks.File.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\Serilog.Sinks.RollingFile.dll"/>
</x64>
</remove>
</plugin>
<plugin name="npp.Connections">
<x64Version>1.0.1</x64Version>
<description>This plugin allows Notepad++ to connect to MS SQL or Sybase servers. ODBC data sources, like a MySql Driver, are also supported</description>
<author>Vladimir Korobenkov</author>
<homepage>https://github.com/vladk1973/npp.connections</homepage>
<sourceUrl>https://github.com/vladk1973/npp.connections</sourceUrl>
<latestUpdate>22.02.2018 (v1.0.1)\n- Minor bug in check button Menu fixed\n- 64-bit ready\n20.02.2018 (v1.0)\n- Initial release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/vladk1973/npp.connections/releases/download/v1.0.1/npp.connections-1.0.1-x64.zip</download>
<copy from="npp.connections.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\npp.connections.dll"/>
</x64>
</remove>
</plugin>
<plugin name="NppCrypt">
<x64Version>1.0.1.6</x64Version>
<description>encryption/decryption with various block ciphers, hash-algorithms, random-characters, encoding with base-16/32/64</description>
<author>Jean Paul Richter</author>
<homepage>https://github.com/jeanpaulrichter/nppcrypt</homepage>
<sourceUrl>https://github.com/jeanpaulrichter/nppcrypt</sourceUrl>
<latestUpdate>[2019-03-31]\n- more ciphers & hashes (thanks to cryptopp 8.0)\n- easy mode (with default encryption), see faq\n- interface improvements (more information etc)\n- user may provide base16/32/64 encoded input\n- user may specify custom IV\n- base32/64 encoding alphabets can be modified, see faq\n- lots of internal improvements & fixes</latestUpdate>
<install>
<x64>
<download>https://github.com/jeanpaulrichter/nppcrypt/releases/download/1.0.1.6/nppcrypt_1.0.1.6_x64.zip</download>
<copy from="nppcrypt.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppEventExec">
<x64Version>0.9.0</x64Version>
<dependencies>
<plugin name="NppExec"/>
</dependencies>
<description>NppEventExec allows you to automatically execute NppExec scripts on Notepad++ events. You can use it for example to format and compile source code. Unleash the beast.</description>
<author>Mihail Ivanchev</author>
<homepage>https://github.com/MIvanchev/NppEventExec</homepage>
<sourceUrl>https://github.com/MIvanchev/NppEventExec</sourceUrl>
<latestUpdate>v0.9.0 (Aug 14, 2017)\n\n* Added a 64-bit version (thanks chcg).\n* Added a rule management dialog.\n* Added a rule edit dialog.\n* Rules can now be aborted before they're executed.\n* Restyled the about dialog.\n* Fixed numerous bugs throughout the plugin.\n* Added unit tests for the CSV parser.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/MIvanchev/NppEventExec/releases/download/v0.9.0/NppEventExec-plugin-x64-0.9.0.zip</download>
<copy from="NppEventExec.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="doc\NppEventExec_license.txt" to="$PLUGINDIR$\doc"/>
</x64>
</install>
</plugin>
<plugin name="NppExec">
<x64Version>0.6</x64Version>
<description>With this NppExec plugin you can execute your commands or saved scripts without leaving Notepad++. It makes you triple your productivity!</description>
<author>Vitaliy Dovgan</author>
<homepage>https://github.com/d0vgan/nppexec</homepage>
<sourceUrl>https://downloads.sourceforge.net/project/npp-plugins/</sourceUrl>
<latestUpdate>2019-04-07 v0.6 RC 3\n ----------------------\n- new advanced option “ChildProcess_RunPolicy” (see “NppExec_TechInfo.txt”)\n- better compatibility with Notepad++ 7.6.x (and higher)\n- internal improvements\n- the NppExec Manual has been updated</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/NppExec/NppExec%20Plugin%20v0.6%20RC3/NppExec_06RC3_dll_x64.zip</download>
<copy from="doc\NppExec\*.*" to="$PLUGINDIR$\doc\NppExec"/>
<copy from="NppExec\*.h" to="$PLUGINDIR$\NppExec"/>
<copy from="NppExec.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppExport">
<x64Version>0.2.8.0</x64Version>
<description>NppExport is a true WYSIWYG exporter. It allows you not only to save your source code as a html/rtf file, but also to copy your source code in the clipboard in RTF/HTML format, so you can paste it into your word processor (MS Word, Abiword, openoffice.org Writer) to get the same visual effect.</description>
<latestUpdate>2018-01-06 Unofficial port of https://sourceforge.net/projects/npp-plugins/files/NppExport/NppExport%20Plugin%20v0.2.8/NppExport_0_2_8_dll.zip/download for x64</latestUpdate>
<install>
<x64>
<download>https://github.com/chcg/NPP_ExportPlugin/releases/download/0.2.8.16/NppExport_0.2.8.16_x64.zip</download>
<copy from="NppExport.dll" toFile="$PLUGINDIR$\$PLUGINFILENAME$" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppFavorites">
<x64Version>1.0.0.1</x64Version>
<description>Favorites plugin for Notepad++\n\nNotepad++ is a GREAT text editor for programmers, but it does not come with favorites...\nThis project is a simple solution to that problem.</description>
<author>Helder Sepulveda</author>
<homepage>https://github.com/heldersepu/nppfavorites</homepage>
<sourceUrl>https://github.com/heldersepu/nppfavorites</sourceUrl>
<latestUpdate>[2018-10-16]\n- initial release</latestUpdate>
<install>
<x64>
<download>https://github.com/heldersepu/nppfavorites/releases/download/1.0.0.1.21/NppFavorites_1.0.0.1.21_x64.zip</download>
<copy from="NppFavorites.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppFTP">
<x64Version>0.29.7</x64Version>
<aliases>
<alias name="nppftp"/>
</aliases>
<description>NppFTP: a plugin that allows FTP, FTPS, FTPES and SFTP communications. Very useful for web development.</description>
<author>ashish_kulz</author>
<homepage>https://ashkulz.github.io/NppFTP/</homepage>
<sourceUrl>https://github.com/ashkulz/NppFTP/</sourceUrl>
<latestUpdate>2020-11-30\n- update to libssh 0.9.5, see https://www.libssh.org/2020/09/10/libssh-0-9-5/</latestUpdate>
<install>
<x64>
<download>https://github.com/ashkulz/NppFTP/releases/download/v0.29.7/NppFTP-x64.zip</download>
<copy from="NppFTP.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="doc\license_*.txt" to="$PLUGINDIR$\doc\NppFTP"/>
</x64>
</install>
</plugin>
<plugin name="NppGTags">
<x64Version>4.4.1</x64Version>
<description>NppGTags plugin is a front-end to GTags (GNU Global source code tagging system). It allows easy code navigation by indexing the project sources. Supports finding symbol definitions and references, finding project paths, string literals, regular expressions (GREP functionality) and adds symbol auto-completion. Supports unlimited simultaneous searches. GTags built-in code parser supports C, C++, Yacc, Java, PHP4 and Assembly. Other languages are supported through Pygments + CTags parser.</description>
<author>Pavel Nedev</author>
<homepage>https://github.com/pnedev/nppgtags</homepage>
<sourceUrl>https://github.com/pnedev/nppgtags</sourceUrl>
<latestUpdate>[2018-10-29]\n- Made find-in-results window horizontally scrollable.\n- Automatically add selected text in results window to the find-in-results text field.\n- Changed plugin's installation path according to the latest Notepad++'s requirements.\n- GTags binaries updated to v6.6.2.</latestUpdate>
<install>
<x64>
<download>https://github.com/pnedev/nppgtags/releases/download/v4.4.1/NppGTags_v4.4.1_X64.zip</download>
<copy from="NppGTags.dll" toFile="$PLUGINDIR$\" validate="true"/>
<copy from="NppGTags\*.*" to="$PLUGINDIR$\NppGTags\" validate="true" recursive="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppGTags\"/>
</x64>
</remove>
</plugin>
<plugin name="NppJumpList">
<x64Version>1.2.2</x64Version>
<description>Adds windows 7 jump list support.</description>
<author>ahvgeezer</author>
<homepage>https://sourceforge.net/projects/nppjumplist/</homepage>
<install>
<x64>
<download>https://github.com/chcg/JumpList/releases/download/1.2.2.7/NppJumpList_1.2.2.7_x64.zip</download>
<copy from="NppJumpList.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\NppJumpList"/>
</x64>
</install>
</plugin>
<plugin name="NppMarkdownPanel">
<x64Version>0.5.0</x64Version>
<description>Lightweight Notepad++ plugin to preview Markdown files with a good default style.</description>
<author>Mohzy83</author>
<homepage>https://github.com/mohzy83/NppMarkdownPanel</homepage>
<latestUpdate>[2019-06-13]\n-change zoomlevel for the preview in settings dialog\n-change css file for the markdown style\n-the new settings are persistent\n-open settings dialog: Plugins-> NppMarkdownPanel -> Edit Settings</latestUpdate>
<install>
<x64>
<download>https://github.com/mohzy83/NppMarkdownPanel/releases/download/0.5.0/NppMarkdownPanel-0.5.0.0-x64.zip</download>
<copy from="NppMarkdownPanel.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppNetNote">
<x64Version>0.1.0.0</x64Version>
<aliases>
<alias name="NppDocShare"/>
</aliases>
<description>Allows the same document to be edited in real time on two different computers. Only needs a network connection between the two.</description>
<author>Harrybharry</author>
<sourceUrl>https://downloads.sourceforge.net/sourceforge/npp-plugins/NppDocShare_0_1_src.zip</sourceUrl>
<latestUpdate>2018-01-20 Unofficial port of https://sourceforge.net/projects/npp-plugins/files/NppDocShare/NppDocShare%20plugin%20v0.1/ for x64</latestUpdate>
<install>
<x64>
<download>https://github.com/chcg/NppDocShare/releases/download/0.1.11/NppDocShare_0.1.11_x64.zip</download>
<copy from="NppDocShare.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppQrCode">
<x64Version>0.0.0.1</x64Version>
<description>This plugin allows to create QR-Code from selected text. Just select the text and push plugin button.</description>
<author>Vladimir Korobenkov</author>
<homepage>https://github.com/vladk1973/NppQrCode</homepage>
<latestUpdate>27.02.2018 (v0.0.0.1)\n- Initial release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/vladk1973/NppQrCode/releases/download/v0.0.0.1/NppQrCode-0.0.0.1-x64.zip</download>
<copy from="NppQrCode64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppQrCode64.dll.dll"/>
</x64>
</remove>
</plugin>
<plugin name="NppRegExTractor">
<x64Version>2.0.0</x64Version>
<description>Search one or more regular expression in one ore more different files and get and xml search result.</description>
<author>Jan Graefe</author>
<homepage>https://github.com/viper3400/RegExTractor/wiki/de_userdocumentation</homepage>
<sourceUrl>https://github.com/viper3400/NppRegExTractor</sourceUrl>
<latestUpdate>2017-12-29 Release now contains x86 and x64 versions for either the x86 build of Notepad++ or the x64 build. There are no code changes in RegExTractor itself.</latestUpdate>
<install>
<x64>
<download>https://github.com/viper3400/NppRegExTractor/releases/download/2.0.0/NppRegExTractor_2.0.0_BUILD_2_x64.zip</download>
<copy from="NppRegExTractorPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="RegExTractor\*" to="$PLUGINDIR$\RegExTractor" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppRegExTractorPlugin.dll"/>
<delete file="$PLUGINDIR$\RegExTractor\*"/>
<delete file="$PLUGINDIR$\RegExTractor"/>
</x64>
</remove>
</plugin>
<plugin name="NppTextViz">
<x64Version>0.4.1</x64Version>
<description>This plugin is meant to hide or show lines to help you analysing larger files - logs for example. You can hide all lines that contain text pattern. Or simply select several lines and hide them.\nPlugin is based on TextFX plugin v0.25 by Chris Severance.</description>
<author>Jakub Dvorak</author>
<homepage>https://github.com/KubaDee/NppTextViz</homepage>
<sourceUrl>https://github.com/KubaDee/NppTextViz</sourceUrl>
<latestUpdate>[2019-06-12]\nSpeed optimization in delete lines function - much faster in large files</latestUpdate>
<install>
<x64>
<download>https://github.com/KubaDee/NppTextViz/releases/download/v0.4.1/NppTextViz_x64_v0.4.1.zip</download>
<copy from="NppTextViz.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppUISpy">
<x64Version>1.0.3</x64Version>
<description>With this plugin you can explore the main menu structure and the toolbar of Notepad++ to figure out which menu command ids are assigned to menu items and toolbar buttons.\n\nYou can left-click on menu item and toolbar button entries to execute the related command. With a right-click to the items a context menu pops up where you can select to copy the item's icon, its text or its menu command id to the clipboard.\n\nBoth the menu item tree and the toolbar button list provide full-text search. Start typing while one of them is focused to make the first matching item getting highlighted.</description>