From 3b72fe93906e4c6b8c800cf2c7b986bc2c2c89a2 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 15 Nov 2019 08:19:12 +1100 Subject: Backport: Feature [feature-requests:#1316] Add access to virtual space at start and end of multiple selections. Backport of changeset 7767:80102fe650b2. --- doc/ScintillaDoc.html | 7 ++++++- doc/ScintillaHistory.html | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 89214ffbd..e407689c1 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -116,7 +116,7 @@

Scintilla Documentation

-

Last edited 22 June 2019 NH

+

Last edited 15 November 2019 NH

There is an overview of the internal design of Scintilla.
@@ -1636,8 +1636,10 @@ struct Sci_TextToFind { SCI_GETSELECTIONNANCHORVIRTUALSPACE(int selection) → position
SCI_SETSELECTIONNSTART(int selection, position anchor)
SCI_GETSELECTIONNSTART(int selection) → position
+ SCI_GETSELECTIONNSTARTVIRTUALSPACE(int selection) → position
SCI_SETSELECTIONNEND(int selection, position caret)
SCI_GETSELECTIONNEND(int selection) → position
+ SCI_GETSELECTIONNENDVIRTUALSPACE(int selection) → position

SCI_SETRECTANGULARSELECTIONCARET(position caret)
@@ -1787,9 +1789,12 @@ struct Sci_TextToFind {

SCI_SETSELECTIONNSTART(int selection, position anchor)
SCI_GETSELECTIONNSTART(int selection) → position
+ SCI_GETSELECTIONNSTARTVIRTUALSPACE(int selection) → position
SCI_SETSELECTIONNEND(int selection, position caret)
SCI_GETSELECTIONNEND(int selection) → position
+ SCI_GETSELECTIONNENDVIRTUALSPACE(int selection) → position
Set or query the start and end position of each already existing selection. + Query the virtual space at start and end of each selection. Mostly of use to query each range for its text. The selection parameter is zero-based.

diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 87a0964fb..1668675a8 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -561,6 +561,10 @@ Released 24 October 2019.

  • + Add methods for finding the virtual space at start and end of multiple selections. + Feature #1316. +
  • +
  • Lexer and folder added for Hollywood language. Feature #1324.
  • -- cgit v1.2.3