OSDN Git Service

Use README.md files for list of plugin sources
authorTim Gerundt <tim@gerundt.de>
Thu, 12 Mar 2020 21:25:21 +0000 (22:25 +0100)
committerTim Gerundt <tim@gerundt.de>
Thu, 12 Mar 2020 21:25:21 +0000 (22:25 +0100)
Plugins/list_of_sources.txt [deleted file]
Plugins/src_Delphi/README.md [new file with mode: 0644]
Plugins/src_VB/README.md [new file with mode: 0644]
Plugins/src_VCPP/README.md [new file with mode: 0644]

diff --git a/Plugins/list_of_sources.txt b/Plugins/list_of_sources.txt
deleted file mode 100644 (file)
index d93190a..0000000
+++ /dev/null
@@ -1,190 +0,0 @@
---------------------------------------------------------------------------------
-DisplayBinaryFiles
---------------------------------------------------------------------------------
-Quickly display binary files, like Windiff.
-No packing (no save).
-
-    Language: VC
-       Event: FILE_PACK_UNPACK
- File filter: .exe, .dll, .ocx, .doc, .xls
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-DisplayMSExcelFiles
---------------------------------------------------------------------------------
-Displays the text content of a MS Excel file, stripping away all formatting and embedded objects.
-No packing (no save).
-
-    Language: VB
-       Event: FILE_PACK_UNPACK
- File filter: *.xls
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-DisplayMSWordFiles
---------------------------------------------------------------------------------
-Displays the text content of a MS Word file, stripping away all formatting and embedded objects.
-No packing (no save).
-
-    Language: VB
-       Event: FILE_PACK_UNPACK
- File filter: *.doc
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-DisplayXMLFiles
---------------------------------------------------------------------------------
-Display xml files nicely, by consistently inserting tabs and linebreaks.
-No packing (no save).
-
-    Language: VC
-       Event: FILE_PACK_UNPACK
- File filter: .xml
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-EditBinaryFiles
---------------------------------------------------------------------------------
-Allow editing of binary files (if line based), using escape scheme for bytes under
-0x20.
-
-
-    Language: VC
-       Event: FILE_PACK_UNPACK
- File filter: .exe, .dll, .ocx, .doc, .xls
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-editor addin
---------------------------------------------------------------------------------
- * "MakeUpper" convert the selection to upper case.
- * "MakeLower" convert the selection to lower case.
-
-    Language: VBS
-       Event: EDITOR_SCRIPT
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-HideFirstLetter
---------------------------------------------------------------------------------
-The first non-space character is invisible in the merge editor (and restored
-when saving).
-
-    Language: VC
-       Event: FILE_PACK_UNPACK
- File filter: *.nofirst, *.hidefirst
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-HideLastLetter
---------------------------------------------------------------------------------
-The last non-space character is invisible in the merge editor (and restored
-when saving).
-
-    Language: VB
-       Event: BUFFER_PACK_UNPACK
- File filter: *.last
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-IgnoreTwoFirstCharsOrder
---------------------------------------------------------------------------------
-Sort the first two characters of both files before diffing.
-
-    Language: VB
-       Event: BUFFER_PREDIFF
- File filter: *.txt
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-IgnoreColumns, IgnoreFieldsComma, IgnoreFieldsTab
---------------------------------------------------------------------------------
-Ignore differences in some columns or some fields (files with separators).
-Update the name of the dll to pass the list of columns/fields.
-
-    Language: VC
-       Event: BUFFER_PREDIFF
- File filter: *.txt (IgnoreColumns, IgnoreFieldsTab)
-              *.csv (IgnoreFieldsComma)
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-IgnoreCommentsC
---------------------------------------------------------------------------------
-Ignore comments in C/C++/PHP/JS files.
-No packing (no save).
-
-    Language: VC
-       Event: FILE_PACK_UNPACK
- File filter: .cpp, .cxx, .h, .hxx, .c, .php, .js
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-insert datetime
---------------------------------------------------------------------------------
- * "InsertDate" insert date in the current locale.
- * "InsertTime" insert time in the current locale.
-
-    Language: VBS
-       Event: EDITOR_SCRIPT
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-RCLocalizationHelper
---------------------------------------------------------------------------------
-Ignore localized strings/layout in files .rc.
-
-    Language: VC
-       Event: BUFFER_PREDIFF
- File filter: *.rc
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-ToUpper
---------------------------------------------------------------------------------
- * "ToUpper" convert the selection to upper case.
-
-    Language: VB
-       Event: EDITOR_SCRIPT
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-UnpackDFM
---------------------------------------------------------------------------------
-UnpackDFM is a plugin for WinMerge which allows WinMerge to compare and merge
-Delphi's binary dfm files. Written in and for Borland Delphi 4.
-Requires the runtime library vcl40.bpl, which is part of the Delphi 4 setup.
-
-    Language: Delphi
-       Event: FILE_PACK_UNPACK
- File filter: *.dfm
---------------------------------------------------------------------------------
-
-
---------------------------------------------------------------------------------
-WatchBeginningOfLog, WatchEndOfLog
---------------------------------------------------------------------------------
-For long log files, user is often interested only in the first lines or in the
-last lines.
-
- * "WatchBeginningOfLog" truncates the files to the first 1/10th.
- * "WatchEndOfLog" truncates the files to the first 1/10th.
-
-    Language: VC
-       Event: FILE_PACK_UNPACK
- File filter: *.log
---------------------------------------------------------------------------------
diff --git a/Plugins/src_Delphi/README.md b/Plugins/src_Delphi/README.md
new file mode 100644 (file)
index 0000000..81f9630
--- /dev/null
@@ -0,0 +1,11 @@
+# Delphi Plugins
+
+## UnpackDFM
+
+UnpackDFM is a plugin for WinMerge which allows WinMerge to compare and merge
+Delphi's binary dfm files. Written in and for Borland Delphi 4.
+
+Requires the runtime library vcl40.bpl, which is part of the Delphi 4 setup.
+
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `*.dfm`
diff --git a/Plugins/src_VB/README.md b/Plugins/src_VB/README.md
new file mode 100644 (file)
index 0000000..c34f111
--- /dev/null
@@ -0,0 +1,44 @@
+# Visual Basic Plugins
+
+## CompareMSExcelFiles
+
+Displays the text content of a MS Excel file, stripping away all formatting and embedded objects.
+
+ * No packing (no save).
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `*.xls`
+
+## CompareMSWordFiles
+
+Displays the text content of a MS Word file, stripping away all formatting and embedded objects.
+
+ * No packing (no save).
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `*.doc`
+
+## HideLastLetter
+
+The last non-space character is invisible in the merge editor (and restored when saving).
+
+ * Event: `BUFFER_PACK_UNPACK`
+ * File filter: `*.last`
+
+## IgnoreLeadingLineNumbers
+
+Ignore leading line numbers in text files (e.g. NC and BASIC files).
+
+ * Event: `BUFFER_PREDIFF`
+ * File filter: `*.nc`
+
+## IgnoreTwoFirstCharsOrder
+
+Sort the first two characters of both files before diffing.
+
+ * Event: `BUFFER_PREDIFF`
+ * File filter: `*.txt`
+
+## ToUpper
+
+Convert the selection to upper case.
+
+ * Event: `EDITOR_SCRIPT`
diff --git a/Plugins/src_VCPP/README.md b/Plugins/src_VCPP/README.md
new file mode 100644 (file)
index 0000000..a65e974
--- /dev/null
@@ -0,0 +1,65 @@
+# Visual C Plugins
+
+## DisplayBinaryFiles
+
+Quickly display binary files, like Windiff.
+
+ * No packing (no save).
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `.exe`, `.dll`, `.ocx`, `.doc`, `.xls`
+
+## DisplayXMLFiles
+
+Display xml files nicely, by consistently inserting tabs and linebreaks.
+
+ * No packing (no save).
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `.xml`
+
+## EditBinaryFiles
+
+Allow editing of binary files (if line based), using escape scheme for bytes under 0x20.
+
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `.exe`, `.dll`, `.ocx`, `.doc`, `.xls`
+
+## HideFirstLetter
+
+The first non-space character is invisible in the merge editor (and restored when saving).
+
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `*.nofirst`, `*.hidefirst`
+
+## IgnoreColumns, IgnoreFieldsComma, IgnoreFieldsTab
+
+Ignore differences in some columns or some fields (files with separators).
+
+Update the name of the dll to pass the list of columns/fields.
+
+ * Event: `BUFFER_PREDIFF`
+ * File filter: `*.txt` (IgnoreColumns, IgnoreFieldsTab), `*.csv` (IgnoreFieldsComma)
+
+## IgnoreCommentsC
+
+Ignore comments in C/C++/PHP/JS files.
+
+ * No packing (no save).
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `.cpp`, `.cxx`, `.h`, `.hxx`, `.c`, `.php`, `.js`
+
+## RCLocalizationHelper
+
+Ignore localized strings/layout in files .rc.
+
+ * Event: `BUFFER_PREDIFF`
+ * File filter: `*.rc`
+
+## WatchBeginningOfLog, WatchEndOfLog
+
+For long log files, user is often interested only in the first lines or in the
+last lines.
+
+ * *WatchBeginningOfLog* truncates the files to the first 1/10th.
+ * *WatchEndOfLog* truncates the files to the first 1/10th.
+ * Event: `FILE_PACK_UNPACK`
+ * File filter: `*.log`