diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 7 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 12 |
2 files changed, 19 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index eab747f1f..0e0300d95 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1858,6 +1858,8 @@ struct Sci_TextToFindFull { <a class="message" href="#SCI_CUTALLOWLINE">SCI_CUTALLOWLINE</a><br /> <a class="message" href="#SCI_SETPASTECONVERTENDINGS">SCI_SETPASTECONVERTENDINGS(bool convert)</a><br /> <a class="message" href="#SCI_GETPASTECONVERTENDINGS">SCI_GETPASTECONVERTENDINGS → bool</a><br /> + <a class="message" href="#SCI_SETCOPYSEPARATOR">SCI_SETCOPYSEPARATOR(<unused>, const char *separator)</a><br /> + <a class="message" href="#SCI_GETCOPYSEPARATOR">SCI_GETCOPYSEPARATOR(<unused>, char *separator) → int</a><br /> <a class="message" href="#SCI_REPLACERECTANGULAR">SCI_REPLACERECTANGULAR(position length, const char *text)</a><br /> </code> @@ -1905,6 +1907,11 @@ struct Sci_TextToFindFull { <a class="seealso" href="#SCI_SETEOLMODE">SCI_SETEOLMODE</a>. Defaults to true.</p> + <p><b id="SCI_SETCOPYSEPARATOR">SCI_SETCOPYSEPARATOR(<unused>, const char *separator)</b><br /> + <b id="SCI_GETCOPYSEPARATOR">SCI_GETCOPYSEPARATOR(<unused>, char *separator) → int</b><br /> + When a multiple selection is copied, this string property is added between each part. + Defaults to empty.</p> + <p><b id="SCI_REPLACERECTANGULAR">SCI_REPLACERECTANGULAR(position length, const char *text)</b><br/> Replaces the selected text or empty selection with the given text. The insertion is performed similarly to rectangular pastes: new lines in the given text are interpreted as diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index dc011dda7..520760784 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -586,6 +586,18 @@ </table> <h2>Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla552.zip">Release 5.5.2</a> + </h3> + <ul> + <li> + Released 22 July 2024. + </li> + <li> + Add SCI_SETCOPYSEPARATOR for separator between parts of a multiple selection when copied to the clipboard. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1530/">Feature #1530</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla551.zip">Release 5.5.1</a> </h3> <ul> |