From 4789f4214261e944fa0824f0a536debc8bc45897 Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 20 Aug 2016 14:48:31 +1000 Subject: Bug [#1648]: Option added to prevent left arrow movement and selection wrapping to previous line. --- doc/ScintillaDoc.html | 9 +++++++-- doc/ScintillaHistory.html | 5 +++++ 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 93b9a9e70..6e94e52e3 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1696,9 +1696,14 @@ struct Sci_TextToFind { SCI_SETVIRTUALSPACEOPTIONS(int virtualSpace)
SCI_GETVIRTUALSPACEOPTIONS
Virtual space can be enabled or disabled for rectangular selections or in other circumstances or in both. - There are two bit flags SCVS_RECTANGULARSELECTION=1 and - SCVS_USERACCESSIBLE=2 which can be set independently. + There are three bit flags SCVS_RECTANGULARSELECTION=1, + SCVS_USERACCESSIBLE=2, and + SCVS_NOWRAPLINESTART=4 which can be set independently. SCVS_NONE=0, the default, disables all use of virtual space.

+

SCVS_NOWRAPLINESTART prevents left arrow movement and selection + from wrapping to the previous line. + This is most commonly desired in conjunction with virtual space but is an independent + setting so works without virtual space.

SCI_SETRECTANGULARSELECTIONMODIFIER(int modifier)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index e8d806040..04acc3ca4 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -512,6 +512,11 @@ Released 24 May 2016.

  • + SCVS_NOWRAPLINESTART option stops left arrow from wrapping to the previous line. + Most commonly wanted when virtual space is used. + Bug #1648. +
  • +
  • The HTML lexer no longer treats "<?" inside a string in a script as potentially starting an XML document. Bug #767.
  • -- cgit v1.2.3