forked from bruderstein/nppPlugins
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugins.xml
More file actions
1382 lines (1382 loc) · 82.8 KB
/
plugins.xml
File metadata and controls
1382 lines (1382 loc) · 82.8 KB
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="AutoSave">
<ansiVersion>1.2</ansiVersion>
<unicodeVersion>1.2</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://fstellari.googlepages.com/npp_plugins</homepage>
<sourceUrl/>
<latestUpdate>\n+ enable new features that allow to save unamed buffers as well as create autorecovery files \n+ fixes a problem that disabled previous version under NPP v5.7</latestUpdate>
<install>
<download>http://sites.google.com/site/fstellari/cab/AutoSave_dll_1v20.zip?attredirects=0</download>
<ansi>
<copy from="AutoSaveA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="AutoSaveU.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
</plugin>
<plugin name="CCompletion">
<unicodeVersion>1.17</unicodeVersion>
<description>It's an autocompletion plugin, that also features two other similar functionalities: \n* find identifier and display it in secondary view \n* go to identitifer For more information on usage, see the plugin help. \nThe plugin uses Exuberant Ctags and can operate with all identifiers that Ctags recognizes. </description>
<author>Bostjan Mihoric</author>
<latestUpdate>Moved exubarant Ctags parameters to the settings file\nFixed DLL issue from 1.16</latestUpdate>
<sourceUrl/>
<install>
<download>http://freeweb.siol.net/rmihor/NppCCompletionPlugin.zip</download>
<copy from="NppCCompletionPlugin.dll" to="$PLUGINDIR$" validate="true"/>
<download>http://downloads.sourceforge.net/sourceforge/ctags/ctags58.zip</download>
<copy from="ctags58\ctags.exe" to="$PLUGINDIR$" validate="true"/>
</install>
<versions>
<version number="1.11.0.0" md5="ec262eb016aafc02afc59e8dd3b94e4f"/>
<version number="1.12" md5="7d56894e3a98704e9a8e34811d3e5440"/>
<version number="1.15" md5="514320a0af90b6c85424fba5ac965da8"/>
<version number="1.17" md5="b871d612d87acb35b1d7bc3d144d8087"/>
</versions>
<issues/>
</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/CharM/CharM_0_9_src.zip/download</sourceUrl>
<install>
<ansi>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/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="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="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="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>https://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>https://sourceforge.net/project/downloading.php?group_id=189927&filename=DBGpPlugin_0_11b_dll.zip&a=29716592</download>
<copy from="*.dll" to="$PLUGINDIR$"/>
</ansi>
</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/DocMonitor.v2.2.src.zip</sourceUrl>
<install>
<download>http://sourceforge.net/projects/npp-plugins/files/DocMonitor/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://sourceforge.net/projects/npp-plugins/files/Explorer/Explorer_1_8_2_UNI_dll.zip</download>
</unicode>
<ansi>
<download>http://sourceforge.net/projects/npp-plugins/files/Explorer/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="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/sourceforge/npp-plugins/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/sourceforge/npp-plugins/FileSwitcher1030_UNI.zip</download>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/sourceforge/npp-plugins/FileSwitcher1030_ANSI.zip</download>
</ansi>
<copy from="FileSwitcher.dll" to="$PLUGINDIR$" validate="true"/>
</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.4</unicodeVersion>
<ansiVersion>1.1</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>\n- Updated keyword list\n- Changed name from Gmod 10 Lua to Gmod Lua </latestUpdate>
<stability>Good</stability>
<aliases>
<alias name="Gmod Lua"/>
<alias name="Gmod 10 Lua Lexer"/>
</aliases>
<install>
<unicode>
<download>http://downloads.sourceforge.net/project/npp-plugins/Gmod%20Lua%20Highlighter/Gmod%20Lua%201.4/NppGmodLuaPlugin-v1.4.zip</download>
<copy from="doc\GmodLua-readme.txt" to="$PLUGINDIR$\doc"/>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/npp-plugins/Gmod%20Lua%20Highlighter/Gmod%20Lua%201.1/NppGmodLuaPlugin-1.1.zip</download>
</ansi>
<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"/>
</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="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>
<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://sourceforge.net/projects/npp-plugins/files/LightExplorer/LightExplorer_2_0_dll.zip</download>
</unicode>
<ansi>
<download>http://sourceforge.net/projects/npp-plugins/files/LightExplorer/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="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="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.6</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>- added whirlpool hash \n- you now can specify the cipher-mode (cbc,ecb,cfb,ofb) \n- if no text is selected when you click "encrypt" all open documents can be encrypted.</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/nppcryptv1006.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\*.*" to="$PLUGINDIR$\doc\NppExec"/>
<copy from="NppExec\*.*" 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.21</unicodeVersion>
<ansiVersion>0.21</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" />
</versions>
<install>
<download>http://downloads.sourceforge.net/project/nppftp/NppFTP_0.2.1.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\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="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</unicodeVersion>
<ansiVersion>0.3</ansiVersion>
<description>Oberon-2 Lexer plugin provides syntax highlighting for the Oberon-2 programming language.</description>
<author>Alexander Iljin <AlexIljin@users.SourceForge.net></author>
<versions>
<version number="0.3" md5="d0999f6603dfb5153a1ef54c687b271d" comment="unicode"/>
<version number="0.3" md5="ef9610e37644482515aa525123cdb8fb" comment="ansi"/>
</versions>
<sourceUrl>http://downloads.sourceforge.net/project/npp-plugins/Oberon2Lexer/Oberon2Lexer%200.3/Oberon2Lexer.v0.3.zip</sourceUrl>
<latestUpdate>First public release.</latestUpdate>
<install>
<download>http://downloads.sourceforge.net/project/npp-plugins/Oberon2Lexer/Oberon2Lexer%200.3/Oberon2Lexer.v0.3.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 <AlexIljin@users.SourceForge.net></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="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"/>
</install>
</plugin>
<plugin name="Plugin Marker Margin">
<unicodeVersion>1.0.0.0</unicodeVersion>
<ansiVersion>1.0.0.0</ansiVersion>
<description>This plugin is used by other plugins. It enables "free" margin for plugin usage on either view.</description>
<versions>
<version number="1.0" md5="052df905a3a4eb3af28e6e66a8be452b" comment="unicode"/>
<version number="1.0" md5="7a9eaa6f543764b2e6fe1da446608f33" comment="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_PluginMargin.dll" to="$PLUGINDIR$"/>
<copy from="config\NppPlugin_PluginMargin.xml" to="$CONFIGDIR$"/>
</unicode>
<ansi>
<copy from="MyNppPluginsAnsi\NppPlugin_PluginMargin.dll" to="$PLUGINDIR$"/>
<copy from="MyNppPluginsAnsi\config\NppPlugin_PluginMargin.xml" to="$CONFIGDIR$"/>
</ansi>
</install>
</plugin>
<plugin name="Plugin update">
<unicodeVersion>0.3.0.0</unicodeVersion>
<description>Allows plugins to maintain their own automatic updates. A plugin must implement the information in its INI file, and provide a download URL.</description>
<author>Franco Stellari</author>
<homepage>http://fstellari.googlepages.com/npp_plugins</homepage>
<install>
<unicode>
<download>http://fstellari.googlepages.com/PluginUpdate_dll_0v30.zip</download>
<copy from="PluginUpdateU.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
</plugin>
<plugin name="Powershell Lexer">
<unicodeVersion>1.0</unicodeVersion>
<ansiVersion>1.0</ansiVersion>
<description>Syntax highlighting and folding for Powershell scripts</description>
<author>Thell Fowler</author>
<sourceUrl>http://poshcode.org/notepad++lexer/ExternalLexer.1.0.src.zip</sourceUrl>
<homepage>http://poshcode.org/notepad++lexer/</homepage>
<versions>
<version number="1.0" md5="b663f742a17c455233752c41e127468e" comment="ansi"/>
<version number="1.0" md5="22359d39c6a7aab44fb56891e608b80d" comment="unicode"/>
</versions>
<install>
<unicode>
<download>http://poshcode.org/notepad++lexer/ExternalLexer.1.0.unicode.zip</download>
</unicode>
<ansi>
<download>http://poshcode.org/notepad++lexer/ExternalLexer.1.0.ansi.zip</download>
</ansi>
<copy from="NppExternalLexers.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="config\Doc\NppExtLexer_PluginHelp.txt" to="$CONFIGDIR$"/>
<copy from="config\NppExternalLexers.xml" to="$CONFIGDIR$" backup="true"/>
</install>
</plugin>
<plugin name="Python Script">
<unicodeVersion>0.6.2.1</unicodeVersion>
<description>Scripting plugin for Notepad++\nFull programmatic access to Notepad++ features and menus\nFull programmatic access to all of Scintilla features\nCall other plugin menu items\nAssign menu items, shortcuts and toolbar icons to scripts\nProcess Notepad++ and Scintilla events, direct from a Python script\nPython console built-in\nFull regular expression support for search and replace - script Python regular expression replaces\nStart external programs and pipe the output direct to a Notepad++ document, or filter it, or simply to the console window\nFull documentation for all the objects and methods</description>
<author>Dave Brotherstone</author>
<sourceUrl>http://github.com/davegb3/PythonScript</sourceUrl>
<homepage>http://npppythonscript.sourceforge.net</homepage>
<stability>Unknown - no complaints, but very new</stability>
<install>
<unicode>
<download>http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.6.2.1.zip</download>
<copy from="python26.dll" to="$NPPDIR$" validate="true"/>
<copy from="plugins\PythonScript\lib\*.py" to="$PLUGINDIR$\PythonScript\lib" />
<copy from="plugins\PythonScript\lib\bsddb\*.py" to="$PLUGINDIR$\PythonScript\lib\bsddb" />
<copy from="plugins\PythonScript\lib\compiler\*.py" to="$PLUGINDIR$\PythonScript\lib\compiler" />
<copy from="plugins\PythonScript\lib\ctypes\*.py" to="$PLUGINDIR$\PythonScript\lib\ctypes" />
<copy from="plugins\PythonScript\lib\ctypes\macholib\*.py" to="$PLUGINDIR$\PythonScript\lib\ctypes\macholib" />
<copy from="plugins\PythonScript\lib\curses\*.py" to="$PLUGINDIR$\PythonScript\lib\curses" />
<copy from="plugins\PythonScript\lib\distutils\*.py" to="$PLUGINDIR$\PythonScript\lib\distutils" />
<copy from="plugins\PythonScript\lib\distutils\command\*.py" to="$PLUGINDIR$\PythonScript\lib\distutils\command" />
<copy from="plugins\PythonScript\lib\email\*.py" to="$PLUGINDIR$\PythonScript\lib\email" />
<copy from="plugins\PythonScript\lib\email\mime\*.py" to="$PLUGINDIR$\PythonScript\lib\email\mime" />
<copy from="plugins\PythonScript\lib\encodings\*.py" to="$PLUGINDIR$\PythonScript\lib\encodings" />
<copy from="plugins\PythonScript\lib\encodings\*.pyo" to="$PLUGINDIR$\PythonScript\lib\encodings" />
<copy from="plugins\PythonScript\lib\hotshot\*.py" to="$PLUGINDIR$\PythonScript\lib\hotshot" />
<copy from="plugins\PythonScript\lib\idlelib\*.py" to="$PLUGINDIR$\PythonScript\lib\idlelib" />
<copy from="plugins\PythonScript\lib\idlelib\*.def" to="$PLUGINDIR$\PythonScript\lib\idlelib" />
<copy from="plugins\PythonScript\lib\idlelib\*.txt" to="$PLUGINDIR$\PythonScript\lib\idlelib" />
<copy from="plugins\PythonScript\lib\idlelib\*.bat" to="$PLUGINDIR$\PythonScript\lib\idlelib" />
<copy from="plugins\PythonScript\lib\idlelib\Icons\*.gif" to="$PLUGINDIR$\PythonScript\lib\idlelib\Icons" />
<copy from="plugins\PythonScript\lib\idlelib\Icons\*.icns" to="$PLUGINDIR$\PythonScript\lib\idlelib\Icons" />
<copy from="plugins\PythonScript\lib\json\*.py" to="$PLUGINDIR$\PythonScript\lib\json" />
<copy from="plugins\PythonScript\lib\lib-tk\*.py" to="$PLUGINDIR$\PythonScript\lib\lib-tk" />
<copy from="plugins\PythonScript\lib\lib2to3\*.py" to="$PLUGINDIR$\PythonScript\lib\lib2to3" />
<copy from="plugins\PythonScript\lib\lib2to3\*.txt" to="$PLUGINDIR$\PythonScript\lib\lib2to3" />
<copy from="plugins\PythonScript\lib\lib2to3\fixes\*.py" to="$PLUGINDIR$\PythonScript\lib\lib2to3\fixes" />
<copy from="plugins\PythonScript\lib\lib2to3\pgen2\*.py" to="$PLUGINDIR$\PythonScript\lib\lib2to3\pgen2" />
<copy from="plugins\PythonScript\lib\logging\*.py" to="$PLUGINDIR$\PythonScript\lib\logging" />
<copy from="plugins\PythonScript\lib\msilib\*.py" to="$PLUGINDIR$\PythonScript\lib\msilib" />
<copy from="plugins\PythonScript\lib\multiprocessing\*.py" to="$PLUGINDIR$\PythonScript\lib\multiprocessing" />
<copy from="plugins\PythonScript\lib\multiprocessing\dummy\*.py" to="$PLUGINDIR$\PythonScript\lib\multiprocessing\dummy" />
<copy from="plugins\PythonScript\lib\sqlite3\*.py" to="$PLUGINDIR$\PythonScript\lib\sqlite3" />
<copy from="plugins\PythonScript\lib\wsgiref\*.py" to="$PLUGINDIR$\PythonScript\lib\wsgiref" />
<copy from="plugins\PythonScript\lib\xml\*.py" to="$PLUGINDIR$\PythonScript\lib\xml" />
<copy from="plugins\PythonScript\lib\xml\dom\*.py" to="$PLUGINDIR$\PythonScript\lib\xml\dom" />
<copy from="plugins\PythonScript\lib\xml\etree\*.py" to="$PLUGINDIR$\PythonScript\lib\xml\etree" />
<copy from="plugins\PythonScript\lib\xml\parsers\*.py" to="$PLUGINDIR$\PythonScript\lib\xml\parsers" />
<copy from="plugins\PythonScript\lib\xml\sax\*.py" to="$PLUGINDIR$\PythonScript\lib\xml\sax" />
<copy from="plugins\PythonScript\scripts\Samples\*.py" to="$CONFIGDIR$\PythonScript\scripts\Samples" />
<copy from="plugins\PythonScript\scripts\startup.py" to="$PLUGINDIR$\PythonScript\scripts" />
<copy from="plugins\doc\PythonScript\PythonScript.chm" to="$PLUGINDIR$\doc\PythonScript" />
<copy from="plugins\PythonScript.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
</plugin>
<plugin name="QuickText">
<unicodeVersion>0.0.2.2</unicodeVersion>
<ansiVersion>0.0.2.1</ansiVersion>
<author>Joao Moreno (latest Unicode amendments by Tony M)</author>
<description>QuickText is a Notepad++ plugin for quick text substitution, including multi field inputs. It's similar to Tab Triggers in TextMate: type a short identifier, press the magic key (default is Tab) and the short text will be replaced with the full version.</description>
<latestUpdate>Unofficial update from Tony M - Unicode version only - 0.0.2.2 \nAdded: \n + Config file: QuickText.conf.ini with following options: \n + allowedChars - characters which are valid for tags (snippets names). \n + lang_menu - Languages (separated by ",") occurring in plugin "Options..." dialog \n (GUI for editing snippets). \n \n + "Open Tags File" command in plugin menu \n + "Open Config File" command in plugin menu \n + Default shortcut combo (ctrl + shift + F5) for "Refresh Configuration" command \n + Sources package \n \nChanged: \n * Tags auto-completion appears even without any character inserted. Only need to push shortcut key combo \n (default ctrl + ENTER) \n \n * Sources cleanup + some descriptive comments \n * GLOBAL group now has number "255" irrespective of number of supported (by notepad++) languages and \n "lang_menu" (in QuickText.conf.ini) values. \n \nFixed: \n * Tags auto-completion with GLOBAL group, so on the list are now tags from current language group and GLOBAL GROUP. \n * Newline translation in "Options..." dialog (was dependent on current file settings, which was incorrect). \n CRLF has to be used in QuickText.ini file now, to translate newline correctly in "Options..." dialog. \n \n0.0.2.1 - Unicode / Ansi \n * [M] Changed default key to Tab\n * [M] Moved QuickText.ini from \QuickText.ini to \plugins\Config\QuickText.ini\n * [M] Increased substitution text length (max is 8bytes number of chars)\n * [+] Valid tag keys (abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890~!@#$%^&*()_+{}|:?><`-=[]\/.,)\n * [+] Global tag added. Current language tag takes priority over Global tag\n * [M] bigger and friendlier logic for inputting tag/subtitution\n * [M] fixed tab indenting of HTML UL tag under UNIX format\n * [+] Created Unicode version of the plugin\n</latestUpdate>
<stability>Unknown - unofficial Unicode release. ANSI 0.21 has reported UI issues</stability>
<homepage>http://sourceforge.net/tracker/?func=detail&aid=3009773&group_id=183263&atid=904542</homepage>
<sourceUrl/>
<install>
<download>http://downloads.sourceforge.net/project/quicktext/QuickText/QuickText%200.2.1/QuickText.v0.2.1.zip</download>
<unicode>
<download>http://tonym.fileave.com/QuickText_v0.2.2_TonyM_mod_v2.bin.zip</download>
<copy from="QuickText.dll" toFile="$PLUGINDIR$\$PLUGINFILENAME$" validate="true"/>
<copy from="Config\QuickText.default.ini" toFile="$PLUGINDIR$\Config\QuickText.ini" backup="true"/>
<copy from="Config\QuickText.conf.default.ini" to="$PLUGINDIR$\Config\QuickText.conf.ini" backup="true" />
<copy from="Doc\CHANGELOG" to="$PLUGINDIR$\doc\QuickText"/>
<copy from="Doc\README" to="$PLUGINDIR$\doc\QuickText"/>
<copy from="Doc\TonyM\CHANGELOG.txt" to="$PLUGINDIR$\doc\QuickText\TonyM"/>
<copy from="Doc\TonyM\README.txt" to="$PLUGINDIR$\doc\QuickText\TonyM"/>
</unicode>
<ansi>
<download>http://downloads.sourceforge.net/project/quicktext/QuickText/QuickText%200.2.1/QuickText.v0.2.1.zip</download>
<copy from="QuickText.v0.2.1\QuickText.ANSI.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="QuickText.v0.2.1\QuickText.ini" to="$CONFIGDIR$" backup="true"/>
<copy from="QuickText.v0.2.1\CHANGELOG" to="$PLUGINDIR$\doc\QuickText"/>
<copy from="QuickText.v0.2.1\LICENCE" to="$PLUGINDIR$\doc\QuickText"/>
<copy from="QuickText.v0.2.1\README" to="$PLUGINDIR$\doc\QuickText"/>
</ansi>
</install>
</plugin>
<plugin name="RegEx Helper">
<unicodeVersion>0.0.2.2</unicodeVersion>
<author>lbarsanti</author>
<description>Highlights all matches of a regular expression within a document. Clicking on an individual result shows the matching groups for that result.</description>
<sourceUrl>http://sourceforge.net/projects/nppregexhelper/</sourceUrl>
<homepage>http://sourceforge.net/projects/nppregexhelper/</homepage>
<versions>
<version number="0.0.2.2" md5="8c9d4f54e12dfa0be8bde87d1bc586c6"/>
</versions>
<install>
<unicode>
<download filename="nppRegEx.dll">http://www.brotherstone.co.uk/npp/nppRegEx/nppRegEx.zip</download>
<copy from="nppRegEx.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
</install>
</plugin>
<plugin name="RegRexPlace">
<unicodeVersion>1.0</unicodeVersion>
<ansiVersion>1.0</ansiVersion>
<homepage>http://f0dder.dcmembers.com/nppplugs.index.php</homepage>
<description>RegRexPlace: a plugin to do "regular regular-expression replaces". Useful when you have often-used regex replacements. I personally use this when writing posts on forums, so I can use my own simplified markup and automatically generated BBCode markup from that. A sample .ini file is included.</description>
<author>f0dder</author>
<versions>
<version number="1.0" md5="38b9e64fa4acfe3cc0bac2af26789871" comment="unicode"/>
<version number="1.0" md5="8d26be3d399ea8d491cc83532205eea3" comment="ansi"/>
</versions>
<install>
<download>http://f0dder.dcmembers.com/nppplugs/npp_plugins.zip</download>
<ansi>
<copy from="ansi\regrexplace.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="unicode\regrexplace.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="readme.txt" to="$PLUGINDIR$\doc\RegRexPlace"/>
<copy from="RegRexPlace.ini" to="$CONFIGDIR$"/>
</install>
</plugin>
<plugin name="RunMe">
<unicodeVersion>1.3.1</unicodeVersion>
<ansiVersion>1.3.1</ansiVersion>
<author>Franco Stellari</author>
<homepage>http://fstellari.googlepages.com/npp_plugins</homepage>
<description>RunMe allows to execute the currently open file, based on its shell association.</description>
<latestUpdate>Fix compatibility with Notepad++ 5.7</latestUpdate>
<install>
<download>http://sites.google.com/site/fstellari/cab/RunMe_dll_1v31.zip?attredirects=0</download>
<ansi>
<copy from="RunMeA.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="RunMeU.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="license.txt" to="$PLUGINDIR$\doc\RunMe"/>
</install>
</plugin>
<plugin name="SciMarkerSymbol">
<unicodeVersion>1.0.0.0</unicodeVersion>
<ansiVersion>1.0.0.0</ansiVersion>
<description>This plugin is used by other plugins. It retrieves the marker symbol type for a line marker from Scintilla. If the marker has not had a marker symbol defined to it the value SC_MARK_AVAILABLE type is returned. This allows plugins to cooperate when when using line markers.</description>
<author>Thell Fowler</author>
<versions>
<version number="1.0" md5="f4691efbfcffe43a0b22b49edfc167a1" comment="unicode"/>
<version number="1.0" md5="f335b835a34ec90326c7c163f91862cc" comment="ansi"/>
</versions>
<sourceURL/>
<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_SciMarkerSymbol.dll" to="$PLUGINDIR$"/>
<copy from="config\NppPlugin_SciMarkerSymbol.xml" to="$CONFIGDIR$"/>
</unicode>
<ansi>
<copy from="MyNppPluginsAnsi\NppPlugin_SciMarkerSymbol.dll" to="$PLUGINDIR$"/>
<copy from="MyNppPluginsAnsi\config\NppPlugin_SciMarkerSymbol" to="$CONFIGDIR$"/>
</ansi>
</install>
</plugin>
<plugin name="ScrollPastEOF">
<unicodeVersion>1.0</unicodeVersion>
<ansiVersion>1.0</ansiVersion>
<description>This plugin simply configures the Scintilla components on startup to allow scrolling up to one page down past the end of file. Currently (as of Notepad++ 5.6.2) there is no GUI setting to enable this feature. It may be added at a later time, but if you are using an older version, you may still want to use this plugin. </description>
<author>Alexander Iljin <AlexIljin@users.SourceForge.net></author>
<versions>
<version number="1.0" md5="ec336b3a0f1248a4d7e81cb108bffbd0" comment="unicode"/>
<version number="1.0" md5="eb3744daf364793da4b6aa24e327a834" comment="ansi"/>
</versions>
<sourceUrl>http://downloads.sourceforge.net/project/npp-plugins/ScrollPastEOF/ScrollPastEOF%201.0U/ScrollPastEOF.1.0U.zip</sourceUrl>
<install>
<download>http://downloads.sourceforge.net/project/npp-plugins/ScrollPastEOF/ScrollPastEOF%201.0U/ScrollPastEOF.1.0U.zip</download>
<ansi>
<copy from="ScrollPastEOF.dll" to="$PLUGINDIR$" validate="true"/>
</ansi>
<unicode>
<copy from="ScrollPastEOFUni.dll" to="$PLUGINDIR$" validate="true"/>
</unicode>
<copy from="*.txt" to="$PLUGINDIR$\doc\ScrollPastEOF"/>
</install>
</plugin>
<plugin name="Search in Files">
<ansiVersion>1.12</ansiVersion>