From 2ceaae0b1f19981706806cd71a1dff695b72cc1a Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 15 Nov 2019 08:19:12 +1100 Subject: Feature [feature-requests:#1316] Add access to virtual space at start and end of multiple selections. --- 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 aee54e206..9fa7f94c1 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -119,7 +119,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.
@@ -1639,8 +1639,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)
@@ -1790,9 +1792,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 02c8e8698..42bbd68f3 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -567,6 +567,10 @@ Released 24 October 2019.

  • + Add methods for finding the virtual space at start and end of multiple selections. + Feature #1316. +
  • +
  • SciTE on Win32 adds mouse button "Forward" and "Backward" key definitions for use in properties like user.shortcuts. Feature #1317. -- cgit v1.2.3