diff options
author | Neil <nyamatongwe@gmail.com> | 2024-07-27 12:35:18 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-07-27 12:35:18 +1000 |
commit | 76ef74bc44e201562320906ca18d3add7084ff8b (patch) | |
tree | 6f8ea39c723a28fb9d355eb7894833689a05c68e /doc/ScintillaDoc.html | |
parent | 12edbfc7840bc4c56d1a7933e587694e9c774aee (diff) | |
download | scintilla-mirror-76ef74bc44e201562320906ca18d3add7084ff8b.tar.gz |
Feature [feature-requests:#1530]. SCI_SETCOPYSEPARATOR sets string to separate
parts of multiple selection when copied.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 7 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 |