diff options
author | Zufu Liu <unknown> | 2025-07-03 08:23:26 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2025-07-03 08:23:26 +1000 |
commit | cde12528a7e587833926354b88ad1974aedaf103 (patch) | |
tree | a6b75dc168997106346dafdd8a424d44949c29f1 /doc/ScintillaDoc.html | |
parent | 181b13c2eed7499d192d0b85c7269dc7ab71336b (diff) | |
download | scintilla-mirror-cde12528a7e587833926354b88ad1974aedaf103.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/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 3 |
1 files changed, 3 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(<unused>, char *selectionString) → 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 /> |