aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorZufu Liu <unknown>2025-07-03 08:23:26 +1000
committerZufu Liu <unknown>2025-07-03 08:23:26 +1000
commitcde12528a7e587833926354b88ad1974aedaf103 (patch)
treea6b75dc168997106346dafdd8a424d44949c29f1 /doc
parent181b13c2eed7499d192d0b85c7269dc7ab71336b (diff)
downloadscintilla-mirror-master.tar.gz
Feature [feature-requests:#1563]. Move main range in selection serialized form.master
Avoid processing characters multiple times by relying on from_chars munching digit characters instead of searching for delimiters.
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html3
-rw-r--r--doc/ScintillaHistory.html4
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 2d0cd4679..5c92043cc 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -1444,6 +1444,9 @@ struct Sci_TextRangeFull {
<b id="SCI_GETSELECTIONSERIALIZED">SCI_GETSELECTIONSERIALIZED(&lt;unused&gt;, char *selectionString) &rarr; position</b><br />
Set or query the selection type and positions as a serialized string.
The format of this string may change in future versions so should not be persisted beyond the current session.</p>
+ <p>The format is currently<br/><code>[selType:R|L|T] [# mainRange ,] [anchor [v virtualSpace] [- caret [v virtualSpace]]] [, ...]</code>
+ <br/>Example of a multiple selection with virtual space: <code>#1,5v3-2,1</code>
+ </p>
<p>
<b id="SC_ELEMENT_SELECTION_ADDITIONAL_TEXT">SC_ELEMENT_SELECTION_ADDITIONAL_TEXT : colouralpha</b><br />
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 0e04865d8..e8b55793b 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -602,6 +602,10 @@
Released 8 June 2025.
</li>
<li>
+ Change format for SCI_GETSELECTIONSERIALIZED.
+ <a href="https://sourceforge.net/p/scintilla/feature-requests/1563/">Feature #1563</a>.
+ </li>
+ <li>
On Win32, force autocompletion list colours to be opaque.
Enlarge bitmap to avoid visible blank background between items.
<a href="https://sourceforge.net/p/scintilla/bugs/2482/">Bug #2482</a>.