-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplugins.xml
1813 lines (1813 loc) · 111 KB
/
plugins.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>
<pluginNames>
<pluginName md5="ad32f0f59e70823de864387f65debcea" name="NppExport" comment="unicode 0.2.8"/>
<pluginName md5="48ae59abb0224ecc252d35e953ce0496" name="NppExport" comment="ansi 0.2.8"/>
<pluginName md5="30b4065fd4aa37ac62d061db73c00222" name="SecurePad" comment="ansi 1.0, reported name is Crypt"/>
<pluginName md5="251302df44178f25e0844efe4f8ea3f0" name="Log Plugin" comment="1.0 ansi, reported name is NppLog"/>
<pluginName md5="b663f742a17c455233752c41e127468e" name="Powershell Lexer" comment="1.0 ansi, reported name is NppExternalLexers"/>
<pluginName md5="22359d39c6a7aab44fb56891e608b80d" name="Powershell Lexer" comment="1.0 unicode, reported name is NppExternalLexers"/>
<pluginName md5="de17cab5ab6244ce4ee328dcdd61bfcc" name="Language Help" commit="1.2 ansi, reported is LanguageHelp changed in 1.3.1.1"/>
<pluginName md5="0771b6dfdd657755fce8997e3a5a0daf" name="Language Help" commit="1.2 unicode, reported is LanguageHelp changed in 1.3.1.1"/>
<pluginName md5="7f5a8f4593ae589529772b37690b443d" name="MultiClipboard" comment="1.4.1 ansi - reports Multi-Clipboard"/>
<pluginName md5="301c72341ba758b3cdfc8a56d576c7f0" name="Switcher" comment="ansi - capitalisation of S"/>
<pluginName md5="5a19bd60aa18e4454f1c4a6432ae5a72" name="Switcher" comment="unicode"/>
</pluginNames>
<plugin name="AnalysePlugin">
<unicodeVersion>1.6.9</unicodeVersion>
<description>AnalysePlugin will help you to search for more than one search pattern at a time. Great for analysing log files.</description>
<author>Matthias Hessling</author>
<versions>
<version number="1.6.8" md5="f0ada8fc86c6b8304f27b8f211398e3c" />
<version number="1.6.9" md5="7f39133444ffbff0c619a09a0b0c38ce" />
</versions>
<install>
<download>http://downloads.sourceforge.net/project/analyseplugin/binaries/v01.06-R9.zip</download>
<copy from="AnalysePlugin\AnalysePlugin.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="AnalysePlugin\*.txt" to="$PLUGINDIR$\doc\AnalysePlugin" />
</install>
</plugin>
<plugin name="AutoSave">
<ansiVersion>1.3</ansiVersion>
<unicodeVersion>1.3</unicodeVersion>
<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>http://sites.google.com/site/fstellari/nppplugins</homepage>
<sourceUrl/>
<latestUpdate>adds a requested functionality to ignore files larger than a specified size.</latestUpdate>
<install>
<download>http://sites.google.com/site/fstellari/cab/AutoSave_dll_1v30.zip?attredirects=0</download>
<ansi>
<copy from="AutoSaveA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="AutoSaveU.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="license.txt" to="$PLUGINDIR$\doc\AutoSave" />
</install>
</plugin>
<plugin name="CCompletion">
<unicodeVersion>1.19</unicodeVersion>
<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>
<sourceUrl/>
<install>
<download>http://freeweb.siol.net/rmihor/NppCCompletionPlugin.zip</download>
<copy from="NppCCompletionPlugin.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="ctags.exe" to="$PLUGINDIR$" validate="true"/>
</install>
<versions>
<version number="1.11" md5="ec262eb016aafc02afc59e8dd3b94e4f"/>
<version number="1.12" md5="7d56894e3a98704e9a8e34811d3e5440"/>
<version number="1.15" md5="514320a0af90b6c85424fba5ac965da8"/>
<version number="1.17" md5="b871d612d87acb35b1d7bc3d144d8087"/>
<version number="1.18" md5="13cfdf84e2667d335301dfc07b51a79f"/>
<version number="1.19" md5="c649268732c1dd01aba6379be25e0796"/>
</versions>
</plugin>
<plugin name="Change Markers">
<ansiVersion>1.0</ansiVersion>
<unicodeVersion>1.0</unicodeVersion>
<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>
<sourceUrl/>
<dependencies>
<plugin name="SciMarkerSymbol"/>
<plugin name="Plugin Marker Margin"/>
</dependencies>
<versions>
<version number="1.0" md5="1042461a139a5a6f1a40faaec89b18b8" comment="Downloaded unicode"/>
<version number="1.0" md5="4faa8d7972d92720b57a1c56585671ef" comment="Downloaded ansi"/>
<version number="1.2" md5="dbaf98043525edd40b1d96d1d78dba9f" comment="5.4.2 bundled unicode"/>
<version number="1.2" md5="7545adf2419068d1484341d24902b879" comment="5.4.2 bundled ansi"/>
<version number="1.2.1" md5="dde7b566d1c25b6c64feee694a6640eb" comment="5.4.3 bundled unicode"/>
<version number="1.2.1" md5="073a196e5b708b11a78cb888243c3480" comment="5.4.3 bundled ansi"/>
</versions>
<install>
<unicode>
<download>http://www.brotherstone.co.uk/npp/changemarker/NppPlugin_ChangeMarker_Unicode_bin.zip</download>
</unicode>
<ansi>
<download>http://www.brotherstone.co.uk/npp/changemarker/NppPlugin_ChangeMarker_Ansi_bin.zip</download>
</ansi>
<unicode>
<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"/>
</unicode>
<ansi>
<copy from="MyNppPluginsAnsi\NppPlugin_ChangeMarker.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="MyNppPluginsAnsi\config\NppPlugin_ChangeMarker.xml" to="$CONFIGDIR$" backup="true"/>
<copy from="MyNppPluginsAnsi\icons\cm_notsaved.xpm" to="$PLUGINDIR$\icons"/>
<copy from="MyNppPluginsAnsi\icons\cm_saved.xpm" to="$PLUGINDIR$\icons"/>
</ansi>
</install>
</plugin>
<plugin name="CharM">
<ansiVersion>0.9.0.0</ansiVersion>
<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>
<sourceUrl>http://sourceforge.net/projects/npp-plugins/files</sourceUrl>
<install>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/CharM/CharM%200.9/CharM_0_9_dll.zip</download>
<copy from="CharM.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="Config\*.ini" to="$CONFIGDIR$"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\CharM"/>
</ansi>
</install>
</plugin>
<plugin name="Code alignment">
<unicodeVersion>2.1</unicodeVersion>
<author>Chris McGrath</author>
<description>Make your code more readable! Align your code by any character. Has options for common alignments such as equals and period.</description>
<install>
<download>http://cpmcgrath.com/Downloads/CodeAlignmentNpp.zip</download>
<copy from="CodeAlignmentNpp.dll" to="$PLUGINDIR$" />
</install>
</plugin>
<plugin name="ColdFusion Lexer">
<unicodeVersion>0.6.0</unicodeVersion>
<author>bbluemel</author>
<description>Syntax highlighting, Call tips (Notepad++ 5.8.4 required) and autocomplete for the ColdFusion language</description>
<versions>
<version number="0.6.0" md5="0D9E0F7909A8E31C21A390EE7B25F017" />
<version number="0.5.3" md5="63e009627d1c07c2064db276c3a22bd3" />
</versions>
<install>
<download>http://www.nppcf.com/files/nppColdFusion-0.6.0beta.zip</download>
<copy from="nppColdFusion.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="nppColdFusion.db3" to="$CONFIGDIR$" />
<copy from="Config\nppColdFusion.xml" to="$CONFIGDIR$" />
</install>
</plugin>
<plugin name="Color Picker">
<ansiVersion>1.3</ansiVersion>
<description>A color picker which translates your selected colour in hexadecimal.</description>
<author>Matthew Edwards</author>
<install>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/ColorPicker/Color%20Picker%20v.1.3/ColorPicker_130_dll.zip</download>
<copy from="ColorPicker.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="Compare">
<ansiVersion>1.5.6</ansiVersion>
<unicodeVersion>1.5.6</unicodeVersion>
<description>A very useful diff plugin to show the difference between 2 files (side by side).</description>
<author>Ty Landercasper, now maintained and updated by Jean-Sebastien Leroy</author>
<sourceUrl>http://sourceforge.net/projects/npp-plugins/files/ComparePlugin/Compare_1_5_5_src.zip/download</sourceUrl>
<versions>
<version number="1.5.4" md5="a0f3ccc98279a19e2cdee382dc4b029a" comment="ansi"/>
<version number="1.5.4" md5="3d4d770bcbeec0e3c2738d6b8ed54442" comment="unicode"/>
<version number="1.5.3" md5="f01273415154928cc66a361d0b5c5186" comment="unicode"/>
<version number="1.5.2" md5="f4515301fff4bc16ff3b16bffdf2ec18" comment="unicode"/>
<version number="1.5.1" md5="3dddfb3aabfe40ec0ecce6f7cb35291b" comment="unicode"/>
<version number="1.5.1" md5="a27b6b6010731f3fe6423b1a5b84e2a6" comment="ansi"/>
<version number="1.5" md5="581494fd5a3f4e30a2e1c3ccd08b3e51" comment="ansi"/>
<version number="1.4" md5="60b4c61ffab4fff7de77102d1a6d0df1" comment="ansi"/>
<version number="1.3" md5="c5f26ee9381ecc30fb8607e4c9d48bae" comment="ansi"/>
<version number="1.2.1" md5="fa897d8bb420ae82e0b274c120683e28" comment="ansi"/>
<version number="1.2" md5="7f1c9b664cf667285d3b1106f1563fd7" comment="ansi"/>
<version number="1.1" md5="7f27bc83d17ca673b64b25c597489fd8" comment="ansi"/>
<version number="1.0" md5="a6194f93000521821bec806a7acf9d9a" comment="ansi"/>
</versions>
<latestUpdate>CHANGES: \n1. NEW: "Previous" and "Next" commands now jumping blockwise instead of linewise. \n2. NEW: When comparing to last save or SVN base: Temp files now inherit the language highlighting from the original file. \n3. NEW: Marker icons for moved state. \n4. FIXED: Restoring of "Synchronize Horizontal Scrolling" check state after "Clear results". \n5. FIXED: Swapping of "Navigation bar" check state when N++ starts after it was closed with opened navigation bar. \n6. CHANGED: When comparing to last save or SVN base: Show temp files in first view (left side) instead of second view. \n7. CHANGED: More intuitive default highlighting colors (green=new, red=deleted, yellow=changed, blue=moved). \n8. CHANGED: Navigation bar background color now system's active caption color.</latestUpdate>
<install>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/ComparePlugin/Compare%201.5.6_Unofficial/Compare_1_5_6_ANSI_dll.zip</download>
</ansi>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/ComparePlugin/Compare%201.5.6_Unofficial/Compare_1_5_6_UNI_dll.zip</download>
</unicode>
<copy from="ComparePlugin.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="Converter">
<unicodeVersion>3.0</unicodeVersion>
<author>Don Ho</author>
<description>Converts selected text (hexadecimal string or ASCII string) to ASCII or hexadecimal string according your choice.</description>
<latestUpdate>Bug fixed:Fix a crash bug by adding a correct casting conversion.\nNew feature:The plugin provides a conversion panel. It could be useful when you need convert a value into ASCII, decimal, hexadecimal, octadecimal and binary.</latestUpdate>
<versions>
<version number="2.0" md5="0b178d918d1210188261e700426b9880" />
<version number="3.0" md5="4747b06ec6392fdd7668ba8628f7e83a" />
</versions>
<install>
<download>http://download.tuxfamily.org/nppplugins/Converter/NppConverter.v3.0.zip</download>
<copy from="NppConverter.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\NppConverter" />
</install>
</plugin>
<plugin name="ConvertExt...">
<ansiVersion>1.1.0.0</ansiVersion>
<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>
<ansi>
<download>http://notepad-plus.sourceforge.net/commun/pluginsBin/ConvertExt_v11RC1.zip</download>
<copy from="ConvertExt.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="ConvertExt.ini" to="$CONFIGDIR$"/>
<copy from="ConvertExt.enc" to="$NPPDIR$"/>
<copy from="ConvertExt.lng" to="$NPPDIR$"/>
<copy from="Documentation\*.txt" to="$PLUGINDIR$\doc\ConvertExt"/>
</ansi>
</install>
</plugin>
<plugin name="Customize Toolbar">
<unicodeVersion>1.3</unicodeVersion>
<description>This plugin allows the Notepad++ toolbar to be fully customised by the user, and includes twelve additional buttons for frequently used menu commands.</description>
<author>Dave-user</author>
<versions>
<version number="1.3" md5="8cfc900866dbbab218685ed973287e76" />
</versions>
<install>
<download>http://downloads.sourceforge.net/project/npp-customize/Customize%20Toolbar%20v1.3/CustomizeToolbar_1_3_UNI_dll.zip</download>
<copy from="CustomizeToolbar.dll" to="$PLUGINDIR$" validate="true" />
</install>
</plugin>
<plugin name="DBGp">
<ansiVersion>0.0.11.20</ansiVersion>
<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>http://sourceforge.net/project/downloading.php?group_id=189927&filename=DBGpPlugin_0_11b_src.zip&a=17984321</sourceUrl>
<stability>Reported issues with port conflicts</stability>
<install>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/DBGP%20Plugin/DBGP%20Plugin%20v0.11%20beta/DBGpPlugin_0_11b_dll.zip</download>
<copy from="*.dll" to="$PLUGINDIR$"/>
</ansi>
</install>
</plugin>
<plugin name="DocIt">
<unicodeVersion>0.5</unicodeVersion>
<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 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>http://sourceforge.net/projects/nppdocit/</homepage>
<install>
<download>http://downloads.sourceforge.net/project/nppdocit/Unicode/NppDocIt.zip</download>
<copy from="NppDocIt\NppDocIt.dll" to="$PLUGINDIR$" validate="true" />
<copy from="NppDocIt\README" to="$PLUGINDIR$\doc\NppDocIt" />
</install>
</plugin>
<plugin name="Document Monitor">
<ansiVersion>2.2.0.0</ansiVersion>
<unicodeVersion>2.2.0.0</unicodeVersion>
<description>Document updater updates your opened documents in Notepad++ every 3 seconds</description>
<author>Don Ho</author>
<sourceUrl>http://sourceforge.net/projects/npp-plugins/files/DocMonitor/</sourceUrl>
<install>
<download>http://downloads.sourceforge.net/project/npp-plugins/DocMonitor/DocMonitor%20v2.2/DocMonitor.v2.2.dll.zip</download>
<ansi>
<copy from="docMonitor.ansi.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="docMonitor.unicode.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
</plugin>
<plugin name="Explorer">
<unicodeVersion>1.8.2.0</unicodeVersion>
<ansiVersion>1.7.3.0</ansiVersion>
<sourceUrl>http://sourceforge.net/projects/npp-plugins/files/</sourceUrl>
<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>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/Explorer/Explorer%20Plugin%20v1.8.2/Explorer_1_8_2_UNI_dll.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/Explorer/Explorer%20Plugin%20v1.7.3/Explorer_1_7_3_dll.zip</download>
</ansi>
<copy from="Explorer.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="External Lexer KVS">
<unicodeVersion>1.0</unicodeVersion>
<ansiVersion>1.0</ansiVersion>
<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>
<unicode>
<download>http://www.brotherstone.co.uk/npp/kvs/KVS_Unicode.zip</download>
</unicode>
<ansi>
<download>http://www.brotherstone.co.uk/npp/kvs/KVS_Ansi.zip</download>
</ansi>
<copy from="ExternalLexerKVS.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="Config\ExternalLexerKVS.xml" to="$CONFIGDIR$"/>
</install>
</plugin>
<plugin name="F# Interactive">
<unicodeVersion>0.1.1</unicodeVersion>
<sourceUrl>http://github.com/ppv/NPPFSIPlugin/tree/master/Source/Plugin</sourceUrl>
<description>This plugin hosts F# Interactive inside Notepad++ (Note: F# should be installed separately).</description>
<latestUpdate>Fix for about box error in Win7 systems.</latestUpdate>
<author>Prapin Peethambaran</author>
<install>
<unicode>
<download>http://github.com/downloads/ppv/NPPFSIPlugin/NPPFSIPlugin.zip</download>
<copy from="NPPFSIPlugin.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
<versions>
<version number="0.1.0.0" md5="4cb393534d36559bedcb50a0a0183e64" />
<version number="0.1.1.0" md5="60138dbfc6cfbf00550bb9b17728e61f" />
</versions>
</plugin>
<plugin name="FTP_synchronize">
<unicodeVersion>0.9.6.2</unicodeVersion>
<ansiVersion>0.9.6.1</ansiVersion>
<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>
<latestUpdate>Unofficial patch to fix some issues</latestUpdate>
<author>Harry B, unofficial patch by XianJun Zhang</author>
<stability>Some issues</stability>
<versions>
<version number="0.9.6.2" md5="b6d239afd7d415695b492631204f8ae5"/>
</versions>
<install>
<unicode>
<download>http://www.brotherstone.co.uk/npp/FTP_Synchronise/FTP_synchronize_amend.zip</download>
<copy from="FTP_synchronize.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/FTP_synchronize/FTP_synchronize%20Plugin%20v0.9.6.1/FTP_synchronize_0_9_6_1_dll.zip</download>
<copy from="FTP_synchronizeA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="Falling Bricks">
<unicodeVersion>1.1.0.0</unicodeVersion>
<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>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/FallingBricks/FallingBricks%201.1%20UNI/fallingbricks_v1.1_unicode_dll.zip</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"/>
</unicode>
</install>
</plugin>
<plugin name="File Switcher">
<ansiVersion>1.0.3.0</ansiVersion>
<unicodeVersion>1.0.3.0</unicodeVersion>
<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>
<sourceUrl>http://www.brotherstone.co.uk/npp/FileSwithcer_src.zip</sourceUrl>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/File%20Switcher/FileSwitcher%201.0.3.0/FileSwitcher1030_UNI.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/File%20Switcher/FileSwitcher%201.0.3.0/FileSwitcher1030_ANSI.zip</download>
</ansi>
<copy from="FileSwitcher.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="FingerText">
<unicodeVersion>0.5.20</unicodeVersion>
<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>http://sourceforge.net/projects/fingertext/</homepage>
<sourceUrl>http://github.com/erinata/FingerText</sourceUrl>
<versions>
<version number="0.3.2" md5="22fe35562cc4671f140748d1e1ec3001" />
<version number="0.5.20" md5="ad9caa1f8b096254a4f12cc753bb8c26" />
</versions>
<install>
<download>http://downloads.sourceforge.net/project/fingertext/Alpha%20Releases/FingerText%20-%200.5.7.zip</download>
<copy from="FingerText.dll" to="$PLUGINDIR$" validate="true" />
<copy from="FingerText0.5.20SampleSnippets.ftd" to="$CONFIGDIR$\FingerText" />
<copy from="Readme.rdoc" to="$PLUGINDIR$\doc\FingerText" />
</install>
</plugin>
<plugin name="Function List">
<unicodeVersion>2.0.0.0</unicodeVersion>
<ansiVersion>1.2.0.0</ansiVersion>
<sourceUrl>http://sourceforge.net/projects/npp-plugins/files/</sourceUrl>
<stability>Occasional issues</stability>
<install>
<unicode>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/FunctionList_2_0_UNI_dll.zip</download>
<copy from="C++.flb" to="$CONFIGDIR$"/>
<copy from="FunctionListRules.xml" to="$CONFIGDIR$"/>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/FunctionList_1_2_dll.zip</download>
</ansi>
<copy from="FunctionList.dll" to="$PLUGINDIR$"/>
</install>
</plugin>
<plugin name="Gmod Lua Lexer">
<unicodeVersion>1.5</unicodeVersion>
<ansiVersion>1.5</ansiVersion>
<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>http://code.google.com/p/npp-gmod-lua/</homepage>
<sourceUrl>http://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>
<aliases>
<alias name="Gmod Lua"/>
<alias name="Gmod 10 Lua Lexer"/>
</aliases>
<install>
<unicode>
<download>http://sourceforge.net/projects/npp-plugins/files/Gmod%20Lua%20Highlighter/Gmod%20Lua%20v1.5/NppGmodLuaPlugin-v1.5.zip/download</download>
</unicode>
<ansi>
<download>http://sourceforge.net/projects/npp-plugins/files/Gmod%20Lua%20Highlighter/Gmod%20Lua%20v1.5/NppGmodLuaPlugin-v1.5-ANSI.zip/download</download>
</ansi>
<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$"/>
</install>
<versions>
<version number="1.0" md5="6d7e70aa9a902c943d34ef66a39356a0" comment="Ansi, known as Gmod Lua"/>
<version number="1.1" md5="b7b50c7a306afb2fa236bb812b3c0980" comment="Ansi, known as Gmod Lua"/>
<version number="1.2" md5="45278a3477e48874854c0cb332cb9745" comment="Unicode, known as Gmod 10 Lua Lexer"/>
<version number="1.3" md5="e1f79cd2c9c243e093baaa7ed63fa04d" comment="Unicode, known as Gmod 10 Lua Lexer"/>
<version number="1.4" md5="dc52c9f0ab821a0868d2630bcb086143" comment="Unicode"/>
<version number="1.5" md5="204af221ad225f5be785399f24431574" comment="Unicode"/>
<version number="1.5" md5="189fbaaa9550e32ffef551731141f132" comment="ANSI"/>
</versions>
</plugin>
<plugin name="Gtag Search">
<unicodeVersion>0.2</unicodeVersion>
<description>Early release of 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>
<sourceUrl>http://downloads.sourceforge.net/sourceforge/gtagfornplus/gtagfornplus.zip</sourceUrl>
<homepage>http://gtagfornplus.sourceforge.net/</homepage>
<versions>
<version number="0.2" md5="e95183c9355cc801356a9c7942e44e5b" comment="2 alpha unicode"/>
</versions>
<install>
<unicode>
<download>http://downloads.sourceforge.net/sourceforge/gtagfornplus/gtagfornplus_unicode_release.zip</download>
<copy from="gtagfornplus.dll" to="$PLUGINDIR$" validate="true"/>
<!-- Global has been temporarily re-hosted, as the link has become dead. Need to change this link as soon as GNU host it again -->
<download>http://www.brotherstone.co.uk/npp/global/glo574wb.zip</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>http://downloads.sourceforge.net/sourceforge/ctags/ctags58.zip</download>
<copy from="ctags58\ctags.exe" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
</plugin>
<plugin name="GuidGuard">
<unicodeVersion>1.0</unicodeVersion>
<ansiVersion>1.0</ansiVersion>
<homepage>http://f0dder.dcmembers.com/nppplugs.index.php</homepage>
<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>
<versions>
<version number="1.0" md5="a6f5e88745f4c376e18133352542cd8b" comment="ansi"/>
<version number="1.0" md5="43d223b7fb94b5b664da762a2339a1fe" comment="unicode"/>
</versions>
<install>
<download>http://f0dder.dcmembers.com/nppplugs/npp_plugins.zip</download>
<ansi>
<copy from="ansi\guidguard.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="unicode\guidguard.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="readme.txt" to="$PLUGINDIR$\doc\Guidguard"/>
</install>
</plugin>
<plugin name="HEX-Editor">
<unicodeVersion>0.9.5.0</unicodeVersion>
<ansiVersion>0.9.5.0</ansiVersion>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/</sourceUrl>
<author>Jens Lorenz</author>
<latestUpdate>\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>Some reported issues, however many bugs fixed in latest release</stability>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/Hex%20Editor/Hex%20Editor%20Plugin%20v0.9.5/HexEditor_0_9_5_UNI_dll.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/Hex%20Editor/Hex%20Editor%20Plugin%20v0.9.5/HexEditor_0_9_5_ANSI_dll.zip</download>
</ansi>
<copy from="HexEditor.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="HTML Tag">
<unicodeVersion>0.2.2.437</unicodeVersion>
<ansiVersion>0.2.2.437</ansiVersion>
<sourceUrl>http://sourceforge.net/projects/npp-plugins/files/HTMLTag/HTMLTag_plugin_v0.2.2_src.zip/download</sourceUrl>
<author>Martijn Coppoolse</author>
<description>This plug-in provides two core functions to Notepad++: HTML and XML tag matching, like the built-in brace matching (Ctrl+B / Shift+Ctrl+B) HTML entity encoding/decoding (example: e to &#233; and vice versa) </description>
<versions>
<version number="0.2.2.437" md5="6e5ccc3b4d71eae15eaa5bb27a791a8d" comment="ANSI (file says 0.2.2.423)"/>
</versions>
<install>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/HTMLTag_plugin_v0.2.2.zip</download>
<ansi>
<copy from="HTMLTag_ansi.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="HTMLTag_unicode.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="HTMLTag-entities.ini" to="$CONFIGDIR$"/>
<copy from="HTMLTag-readme.txt" to="$PLUGINDIR$\doc\HTMLTag"/>
</install>
</plugin>
<plugin name="JSLint">
<unicodeVersion>0.5.0.109</unicodeVersion>
<ansiVersion>0.5.0.109</ansiVersion>
<sourceUrl>https://sourceforge.net/projects/jslintnpp/</sourceUrl>
<author>Martin Vladic</author>
<description>A Notepad++ plugin that allows users to run JSLint (The JavaScript Code Quality Tool) against their open JavaScript files (more about JSLint at http://www.jslint.com/lint.html).</description>
<latestUpdate>JSLint script updated to version from 2011-04-28</latestUpdate>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/jslintnpp/0.5.0/JSLintNPP.0.5.0.zip</download>
<copy from="JSLintNpp.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/jslintnpp/0.5.0/JSLintNPP_ANSI.0.5.0.zip</download>
<copy from="JSLintNppA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<copy from="README.txt" to="$PLUGINDIR$\doc\JSLintNpp" />
</install>
</plugin>
<plugin name="JSMin">
<unicodeVersion>1.8</unicodeVersion>
<ansiVersion>1.8</ansiVersion>
<sourceUrl>http://sourceforge.net/projects/jsminnpp/</sourceUrl>
<author>Junwen Sun</author>
<description>A Javascript plugin. Use Douglas Crockford's JSMin to minimize javascript code and uses own algorithm to format javascript code. Really helpful to javascript coder on Notepad++ and really easy to use.</description>
<homepage>http://sunblog.72pines.com/development-center/jsminnpp/</homepage>
<latestUpdate>Leave empty {} alone.\nAdded a shortcut for formatting (Ctrl+Alt+M).\nAdded an option to keep comments at top of codes.\nFixed bugs.</latestUpdate>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/jsminnpp/Uni/JSMinNPP.1.8.uni.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/jsminnpp/Asc/JSMinNPP.1.8.asc.zip</download>
</ansi>
<copy from="JSMinNpp.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="JSON Viewer">
<unicodeVersion>1.15</unicodeVersion>
<homepage>http://nppjsonviewer.sourceforge.net/</homepage>
<description>A JSON viewer plugin for notepad++. Displays the selected JSON string in a tree view.</description>
<category>Web</category>
<author>Kapil Ratnani</author>
<latestUpdate>1. Fixed bug 3203739 "Unable to parse JSON Arrays"\n2. Fixed hotkey, now press CTRL+SHIFT+ALT+J(default).\n3. Marks error position in JSON</latestUpdate>
<versions>
<version number="1.0" md5="39a208efce0900dfafc94c247220631d" comment="unicode" />
</versions>
<aliases>
<alias name="JSONViewer" />
</aliases>
<install>
<download>http://downloads.sourceforge.net/project/nppjsonviewer/JSONViewer%20Unicode/NPPJSONViewer1_15.zip</download>
<copy from="NPPJSONViewer\NPPJSONViewer.dll" to="$PLUGINDIR$" />
<copy from="NPPJSONViewer\README" to="$PLUGINDIR$\doc\NPPJSONViewer" />
</install>
</plugin>
<plugin name="Language Help">
<unicodeVersion>1.3.3</unicodeVersion>
<ansiVersion>1.3.3</ansiVersion>
<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>
<latestUpdate>Fixes compatibility problems with NPP v5.7</latestUpdate>
<homepage>http://sites.google.com/site/fstellari/nppplugins</homepage>
<install>
<download>http://sites.google.com/site/fstellari/cab/LanguageHelp_dll_1v33.zip?attredirects=0</download>
<unicode>
<copy from="LanguageHelpU.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<copy from="LanguageHelpA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="Light Explorer">
<unicodeVersion>2.0.0.0</unicodeVersion>
<ansiVersion>1.6.0.0</ansiVersion>
<author>Javier Sanjose</author>
<description>Allows documents to be opened from a dockable file explorer, that is very light weight and fast.</description>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/LightExplorer/LightExplorer%202.0%20UNICODE/LightExplorer_2_0_dll.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/LightExplorer/LightExplorer%201.6/LightExplorer_1_6_dll.zip</download>
</ansi>
<copy from="LightExplorer.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="Log Plugin">
<ansiVersion>1.0</ansiVersion>
<description>Log plugin allows Notepad++ has one of MS Notepad basic features : Append the date/time at the end of file after a file is opened in Notepad++, if file begins with ".LOG".</description>
<author>Nicholas Heckman</author>
<versions>
<version number="1.0" md5="251302df44178f25e0844efe4f8ea3f0"/>
</versions>
<install>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/Log%20Plugin/Log%20Plugin%20v1.0/NppLogPlugin.v1.0.dll.zip</download>
<copy from="NppLogPlugin.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="Lorem Ipsum">
<ansiVersion>1.0</ansiVersion>
<unicodeVersion>1.0</unicodeVersion>
<aliases>
<alias name="InsertLoremIpsum" />
</aliases>
<description>Inserts Lorem Ipsum text. Lorem Ipsum is a standard text used for print and website layout, before the actual copy text is decided.</description>
<author>Alexandru Ionita</author>
<sourceUrl>http://twenfour.com/opensource/InsertLoremIpsum/InsertLoremIpsumNppPlugin_src.zip</sourceUrl>
<versions>
<version number="1.0" md5="f1b7e7842f58cd4c9ea2169c0e47a292" comment="uni"/>
<version number="1.0" md5="66fd7ed3794ec6244150dce023fc3d4d" comment="ansi"/>
</versions>
<install>
<ansi>
<download>http://twenfour.com/opensource/InsertLoremIpsum/InsertLoremIpsumNppPlugin_ANSI_release.zip</download>
<copy from="InsertLoremIpsumNppPlugin ANSI release\InsertLoremIpsumNppPluginA.dll" to="$PLUGINDIR$" />
<copy from="InsertLoremIpsumNppPlugin ANSI release\Config\InsertLoremIpsum_stats.cfg" to="$PLUGINDIR$\Config" />
<copy from="InsertLoremIpsumNppPlugin ANSI release\license.txt" to="$PLUGINDIR$\doc\LoremIpsum" />
<copy from="InsertLoremIpsumNppPlugin ANSI release\READ ME.txt" to="$PLUGINDIR$\doc\LoremIpsum" />
</ansi>
<unicode>
<download>http://twenfour.com/opensource/InsertLoremIpsum/InsertLoremIpsumNppPlugin_Unicode_release.zip</download>
<copy from="InsertLoremIpsumNppPlugin Unicode release\InsertLoremIpsumNppPlugin.dll" to="$PLUGINDIR$" />
<copy from="InsertLoremIpsumNppPlugin Unicode release\Config\InsertLoremIpsum_stats.cfg" to="$PLUGINDIR$\Config" />
<copy from="InsertLoremIpsumNppPlugin Unicode release\license.txt" to="$PLUGINDIR$\doc\LoremIpsum" />
<copy from="InsertLoremIpsumNppPlugin Unicode release\READ ME.txt" to="$PLUGINDIR$\doc\LoremIpsum" />
</unicode>
</install>
</plugin>
<plugin name="MIME Tools">
<unicodeVersion>1.5</unicodeVersion>
<ansiVersion>1.5</ansiVersion>
<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>
<install>
<download>http://downloads.sourceforge.net/project/npp-plugins/MIME%20Tools/MIME%20Tools%20v1.5/mimeTools.v1.5.dll.zip</download>
<unicode>
<copy from="mimeTools.unicode.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<copy from="mimeTools.ansi.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="MathPad">
<unicodeVersion>0.0.5.3</unicodeVersion>
<ansiVersion>0.0.3.0</ansiVersion>
<homepage>http://www.semelinanno.com/downloads/anmxnpp/anmXNpp_Page.html</homepage>
<description>This plugin allows evaluating mathematical expressions, as well as some simple formal calculus.</description>
<author>Carlo Somigliana</author>
<latestUpdate>-Fixed undo/redo\n- Fixed a minor bug showing a square in calltips on some systems (choose your own New Line character) \n- Moved all the log and debug output to the System Debug (use the free tool DebugView to view it). Menu updated# \n- Fixed a bug with Options menu (not shown) \n- New CallTip with Hexadecimal and Binary results (see picture) \n- Added Custom Menu (Ctrl + Right Click) after CallTip shows with conversion & clipboard functions \n- Plugin Log writes to System Debug pipe (use Sysinternals@ free DebugView to view it, filtering by 'MathPad' string) \n- List of Commands now in HTML format (copy in plugins\mathpad folder) </latestUpdate>
<aliases>
<alias name="Math Evaluator"/>
</aliases>
<install>
<unicode>
<download>http://semelinanno.com/downloads/mathpad/ver0050/MathPad_v0050.zip</download>
<copy from="plugins\mathpad\*.*" to="$PLUGINDIR$\mathpad"/>
<download>http://www.semelinanno.com/downloads/mathpad/ver0053/MathPad_v0053.zip</download>
<copy from="mathpad.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<download>http://www.semelinanno.com/downloads/anmxnpp/ver0030/anmXNpp_v0030.zip</download>
<copy from="plugins\anmXNpp.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="plugins\anmXNpp\*.*" to="$PLUGINDIR$\anmXNpp"/>
</ansi>
</install>
</plugin>
<plugin name="MultiClipboard">
<unicodeVersion>2.0.0.0</unicodeVersion>
<ansiVersion>1.4.1.0</ansiVersion>
<description>MultiClipboard plugin implements multiple (10) text buffers that is filled up via copying and/or cutting of text. To paste any text from the buffers, use Ctrl-V or middle mouse click (normal paste): to paste the most recently copied/cut text Ctrl-Shift-V or Shift-middle mouse click: to pop up a menu with the text buffer entries. Select the desired menu item to paste it</description>
<author>LoonyChewy</author>
<install>
<unicode>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/MultiClipboard_2.0.0_unicode_dll.zip</download>
<copy from="MultiClipboard.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\Multiclipboard"/>
<copy from="license.txt" to="$PLUGINDIR$\doc\Multiclipboard"/>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/MultiClipboard_1_4_1_dll.zip</download>
<copy from="MultiClipboard.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="MultiClipboard_Readme.txt" to="$PLUGINDIR$\doc\Multiclipboard"/>
</ansi>
</install>
</plugin>
<plugin name="NativeLang">
<unicodeVersion>1.2.0.0</unicodeVersion>
<ansiVersion>1.1.0.0</ansiVersion>
<author>Jens Lorenz</author>
<description>NativeLang is a helper plugin that allows other plugins to translate their menus and dialogs.</description>
<versions>
<version number="1.1" md5="6be26262f1d0fa9c9e35287806e3a1b5" comment="ANSI version (dll ver 1.0.1)"/>
<version number="1.2" md5="7e178b565efa8c2a60def6287c5beb3d" comment="UNICODE version (dll ver 1.1)"/>
</versions>
<install>
<unicode>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/NativeLang_1_2_dll.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/NativeLang_1_1_dll.zip</download>
</ansi>
<copy from="NativeLang.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="Notepad#">
<unicodeVersion>0.9.4</unicodeVersion>
<description>General plugin (proper new line handling, comments, indenting etc)\n\n Implemented so far:\n\n- Proper new line inside DocBock for C, C++, Javascript, PHP\n- Proper new line for # comment in Ruby\n- Indent after opening curly brace for C-like languages\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 and HTML\n- End last opened tag</description>
<author>jvdanilo</author>
<homepage>https://github.com/jvdanilo/NotepadSharp</homepage>
<sourceUrl>https://github.com/jvdanilo/NotepadSharp</sourceUrl>
<versions>
<version number="0.9.4" md5="e6fbbc39a2001492ee890464f1a672e7" />
</versions>
<install>
<download>http://www.brotherstone.co.uk/npp/NotepadSharp/NotepadSharp.zip</download>
<copy from="NotepadSharp.dll" to="$PLUGINDIR$" validate="true" />
</install>
</plugin>
<plugin name="NppAutoIndent">
<unicodeVersion>1.2.0.0</unicodeVersion>
<ansiVersion>1.2.0.0</ansiVersion>
<sourceUrl/>
<author>Harrybharry</author>
<description>NppAutoIndent plugin has 'smart' indentation for C-style languages, such as C/C++, PHP, Java and such. There is NO support for HTML/XML and such, maybe later, tag matching is much more difficult to implement.</description>
<install>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppAutoIndent_1_2_dll.zip</download>
<unicode>
<copy from="NppAutoIndent.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<copy from="NppAutoIndentA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="NppCrypt">
<unicodeVersion>1.0.0.7</unicodeVersion>
<author>Max Waghals</author>
<sourceUrl>http://www.cerberus-design.de/nppcryptv1004.zip</sourceUrl>
<description>Allows encryption / decryption and hashing of text using a password.</description>
<latestUpdate>Bugfix and includes the possibility to use your own extension for nppcrypt files.</latestUpdate>
<versions>
<version number="1.0" md5="9ec7f2d0cf210772bce84700f38776c6"/>
<version number="1.0.0.1" md5="eeea34937d317fd9c5fde569ee3540a4"/>
</versions>
<install>
<unicode>
<download>http://www.cerberus-design.de/nppcryptv1007.zip</download>
<copy from="NppCrypt.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\NppCrypt"/>
</unicode>
</install>
</plugin>
<plugin name="NppDocShare">
<!-- Same as NppNetNote, just the old name -->
<sourceUrl>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppDocShare_0_1_src.zip</sourceUrl>
<description>Allows the same document to be edited in real time on two different computers. Only needs a network connection between the two. Now known as NppNetNote.</description>
<author>Harrybharry</author>
<install>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppDocShare_0_1_dll.zip</download>
<unicode>
<copy from="NppDocShare.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<copy from="NppDocShareA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="NppExec">
<unicodeVersion>0.4.1</unicodeVersion>
<ansiVersion>0.4.1</ansiVersion>
<sourceUrl>http://downloads.sourceforge.net/project/npp-plugins/</sourceUrl>
<author>Dovgan Vitaliy</author>
<description>With this NppExec plugin you can execute your commands or saved scripts without leaving Notepad++. It makes you triple your productivity!</description>
<latestUpdate>Improved installation - recommended updated\n- fix for NPP_SENDMSG/SCI_SENDMSG with parameters containing dbl-quote(s) \n+ fparser updated to v4.2 \n+ NppExec Manual updated</latestUpdate>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/NppExec/NppExec%20Plugin%20v0.4.1/NppExec_041_dll_Unicode.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/NppExec/NppExec%20Plugin%20v0.4.1/NppExec_041_dll_ANSI.zip</download>
</ansi>
<copy from="doc\*.html" to="$PLUGINDIR$\doc"/>
<copy from="doc\*.knt" to="$PLUGINDIR$\doc"/>
<copy from="doc\*.txt" to="$PLUGINDIR$\doc"/>
<copy from="doc\*.chm" to="$PLUGINDIR$\doc"/>
<copy from="NppExec\*.h" to="$PLUGINDIR$\NppExec"/>
<copy from="NppExec.dll" to="$PLUGINDIR$" validate="true"/>
</install>
</plugin>
<plugin name="NppExport">
<unicodeVersion>0.2.8.0</unicodeVersion>
<ansiVersion>0.2.8.0</ansiVersion>
<sourceUrl/>
<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>
<versions>
<version number="0.2.8" md5="ad32f0f59e70823de864387f65debcea" comment="unicode bundled 5.1-5.4.5+"/>
<version number="0.2.8" md5="48ae59abb0224ecc252d35e953ce0496" comment="ansi bundled 5.1-5.4.5+"/>
</versions>
<install>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppExport_0_2_8_dll.zip</download>
<unicode>
<copy from="NppExport.dll" toFile="$PLUGINDIR$\$PLUGINFILENAME$" validate="true"/>
</unicode>
<ansi>
<copy from="NppExportA.dll" toFile="$PLUGINDIR$\$PLUGINFILENAME$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="NppFTP">
<unicodeVersion>0.23</unicodeVersion>
<ansiVersion>0.23</ansiVersion>
<homepage>http://sourceforge.net/projects/nppftp/</homepage>
<description>NppFTP: a plugin that allows FTP, FTPS, FTPES and SFTP communications. Very useful for web development.</description>
<author>harrybharry</author>
<aliases>
<alias name="nppftp" />
</aliases>
<versions>
<version number="0.20" md5="4d5effb36b7edf520e679790b9183daf" comment="uni 0.2.0" />
<version number="0.20" md5="858b17aa4e3c07ce1034f718275e326a" comment="ansi 0.2.0" />
<version number="0.21" md5="60ccda33c8a197b0eee78e640d7d6996" comment="uni 0.2.1" />
<version number="0.21" md5="aa0d5071faa75669de82a51e6ffd7847" comment="ansi 0.2.1" />
<version number="0.23" md5="6ab53efa884da485aeb88e741e7b323b" comment="uni 0.2.3" />
<version number="0.23" md5="e4bed22538be7e92ce129880c5566a20" comment="ansi 0.2.3" />
</versions>
<install>
<download>http://downloads.sourceforge.net/project/nppftp/NppFTP_0.23.zip</download>
<ansi>
<copy from="bin\NppFTPA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="bin\NppFTP.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="doc\license_libssh.txt" to="$PLUGINDIR$\doc\NppFTP"/>
<copy from="doc\Readme.txt" to="$PLUGINDIR$\doc\NppFTP"/>
<copy from="doc\license_NppFTP.txt" to="$PLUGINDIR$\doc\NppFTP"/>
<copy from="doc\license_OpenSSL.txt" to="$PLUGINDIR$\doc\NppFTP"/>
<copy from="doc\license_TiXML.txt" to="$PLUGINDIR$\doc\NppFTP"/>
<copy from="doc\license_UTCP.htm" to="$PLUGINDIR$\doc\NppFTP"/>
<copy from="doc\license_ZLIB.txt" to="$PLUGINDIR$\doc\NppFTP"/>
</install>
</plugin>
<plugin name="NppJumpList">
<unicodeVersion>1.2.2</unicodeVersion>
<homepage>http://sourceforge.net/projects/nppjumplist/</homepage>
<description>Adds windows 7 jump list support.</description>
<author>ahvgeezer</author>
<install>
<download>http://downloads.sourceforge.net/project/nppjumplist/1.2.2/NppJumpList.1.2.2.bin.zip</download>
<copy from="NppJumpList.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\NppJumpList" />
</install>
</plugin>
<plugin name="NppNetNote">
<unicodeVersion>0.1.0.0</unicodeVersion>
<ansiVersion>0.1.0.0</ansiVersion>
<sourceUrl>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppDocShare_0_1_src.zip</sourceUrl>
<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>
<install>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppDocShare_0_1_dll.zip</download>
<unicode>
<copy from="NppDocShare.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<copy from="NppDocShareA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="Oberon-2 Lexer">
<unicodeVersion>0.3.1</unicodeVersion>
<ansiVersion>0.3.1</ansiVersion>
<description>Oberon-2 Lexer plugin provides syntax highlighting for the Oberon-2 programming language.</description>
<author>Alexander Iljin <[email protected]></author>
<versions>
<version number="0.3" md5="d0999f6603dfb5153a1ef54c687b271d" comment="unicode"/>
<version number="0.3" md5="ef9610e37644482515aa525123cdb8fb" comment="ansi"/>
<version number="0.3.1" md5="50875eb73f420b1d5999f252cb93c3dc" comment="unicode"/>
<version number="0.3.1" md5="466feab32b1a653c027e09bd9b36e883" comment="ansi"/>
</versions>
<sourceUrl>http://downloads.sourceforge.net/project/npp-plugins/Oberon2Lexer/Oberon2Lexer%200.3/Oberon2Lexer.v0.3.zip</sourceUrl>
<latestUpdate>Bug fixed invalid highlighting of hexadecimal constants (H and X suffixes) if the constant contained lower case characters.</latestUpdate>
<install>
<download>http://downloads.sourceforge.net/project/npp-plugins/Oberon2Lexer/Oberon2Lexer%200.3.1/Oberon2Lexer.v0.3.1.zip</download>
<ansi>
<copy from="Oberon2Lexer\Oberon2Lexer.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="Oberon2Lexer\Config\Oberon2Lexer.xml" to="$CONFIGDIR$" backup="true"/>
</ansi>
<unicode>
<copy from="Oberon2Lexer\Oberon2LexerU.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="Oberon2Lexer\Config\Oberon2LexerU.xml" to="$CONFIGDIR$" backup="true"/>
</unicode>
<copy from="Oberon2Lexer\*.txt" to="$PLUGINDIR$\doc\Oberon2Lexer"/>
</install>
</plugin>
<plugin name="Obide">
<unicodeVersion>2.3.2</unicodeVersion>
<ansiVersion>2.3.2</ansiVersion>
<description>Obide provides IDE capabilities for XDS Oberon-2 developers: autocompletion, source navigation, code hints, etc.</description>
<author>Alexander Iljin <[email protected]></author>
<latestUpdate>\n - Fixed: parser now tolerates excess semicolons in variable lists, including RECORD declarations.</latestUpdate>
<install>
<download>http://downloads.sourceforge.net/project/npp-plugins/Obide/Obide%202.3.2/Obide.v.2.3.2.zip</download>
<ansi>
<copy from="Obide\Obide.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="Obide\ObideU.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="Obide\Config\Obide.ini" to="$CONFIGDIR$" backup="true"/>
<copy from="Obide\*.txt" to="$PLUGINDIR$\doc\Obide"/>
</install>
</plugin>
<plugin name="Open File In Solution">
<unicodeVersion>2.194</unicodeVersion>
<homepage>http://www.incrediblejunior.com/npp_plugins/</homepage>
<description>Lets you index specific folders and possible specific types of resources (xml-, cpp, py-files) for a fast indexing of files.</description>
<author>incfred</author>
<versions>
<version md5="b1c1902fae76a03a5a67981ef5c644c8" number="2.176" />
<version md5="596ecdc4a79a8ca8c6cb8b626184af86" number="2.194" />
</versions>
<dependencies>
<plugin name="SolutionHub" />
<plugin name="SolutionHubUI" />
</dependencies>
<install>
<download>http://www.incrediblejunior.com/npp_plugins/downloads/ofis2_r194.zip</download>
<copy from="nppplugin_ofis2.dll" to="$PLUGINDIR$" validate="true" />
<copy from="config\nppplugin_ofis2.config" to="$PLUGINDIR$\config" />
<copy from="doc\nppplugin_ofis2_help.txt" to="$PLUGINDIR$\doc" />
</install>
</plugin>
<plugin name="Perforce actions">
<unicodeVersion>2.0.0.1</unicodeVersion>
<ansiVersion>2.0.0.1</ansiVersion>
<sourceUrl>http://www.brotherstone.co.uk/npp/perforce/NppPerforcePlugin_Source.zip</sourceUrl>
<description>Provides integration with Perforce. Checkout, mark for add, mark for delete and revert operations are supported through the plugin's menu. Also, the file is automatically checked out when you start typing in it.</description>
<author>Henrik Ravn</author>
<install>
<unicode>
<download>http://www.brotherstone.co.uk/npp/perforce/NppPerforcePlugin_Unicode.zip</download>
<copy from="NppPerforcePlugin.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<ansi>
<download>http://www.brotherstone.co.uk/npp/perforce/NppPerforcePlugin_Ansi.zip</download>
<copy from="NppPerforcePlugin_Ansi.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
</install>
</plugin>
<plugin name="Plugin Manager">
<unicodeVersion>0.9.3.1</unicodeVersion>
<ansiVersion>0.9.3.1</ansiVersion>
<sourceUrl>http://github.com/davegb3/nppPluginManager</sourceUrl>
<description>The Plugin Manager is this plugin, that allows installation, update and removal of Notepad++ plugins. It will notify you of updates to plugins that you have installed, and automatically install dependencies and required files into the correct places.</description>
<latestUpdate>Now functions correctly with Windows7 and Vista UAC\nBug fixed with using proxies when validating downloaded files</latestUpdate>
<homepage>http://www.brotherstone.co.uk/npp/pm</homepage>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/PluginManager/PluginManager%200.9.3.1/PluginManager_0.9.3.1_UNI.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/PluginManager/PluginManager%200.9.3.1/PluginManager_0.9.3.1_ANSI.zip</download>
</ansi>
<copy from="plugins\PluginManager.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="updater\gpup.exe" to="$NPPDIR$\updater" validate="true" replace="true"/>