From cde12528a7e587833926354b88ad1974aedaf103 Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Thu, 3 Jul 2025 08:23:26 +1000 Subject: Feature [feature-requests:#1563]. Move main range in selection serialized form. Avoid processing characters multiple times by relying on from_chars munching digit characters instead of searching for delimiters. --- doc/ScintillaDoc.html | 3 +++ doc/ScintillaHistory.html | 4 ++++ 2 files changed, 7 insertions(+) (limited to 'doc') 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 { SCI_GETSELECTIONSERIALIZED(<unused>, char *selectionString) → position
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.

+

The format is currently
[selType:R|L|T] [# mainRange ,] [anchor [v virtualSpace] [- caret [v virtualSpace]]] [, ...] +
Example of a multiple selection with virtual space: #1,5v3-2,1 +

SC_ELEMENT_SELECTION_ADDITIONAL_TEXT : colouralpha
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.

  • + Change format for SCI_GETSELECTIONSERIALIZED. + Feature #1563. +
  • +
  • On Win32, force autocompletion list colours to be opaque. Enlarge bitmap to avoid visible blank background between items. Bug #2482. -- cgit v1.2.3