diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 9 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 5 |
2 files changed, 12 insertions, 2 deletions
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 { <b id="SCI_SETVIRTUALSPACEOPTIONS">SCI_SETVIRTUALSPACEOPTIONS(int virtualSpace)</b><br /> <b id="SCI_GETVIRTUALSPACEOPTIONS">SCI_GETVIRTUALSPACEOPTIONS</b><br /> Virtual space can be enabled or disabled for rectangular selections or in other circumstances or in both. - There are two bit flags <code>SCVS_RECTANGULARSELECTION</code>=1 and - <code>SCVS_USERACCESSIBLE</code>=2 which can be set independently. + There are three bit flags <code>SCVS_RECTANGULARSELECTION</code>=1, + <code>SCVS_USERACCESSIBLE</code>=2, and + <code>SCVS_NOWRAPLINESTART</code>=4 which can be set independently. <code>SCVS_NONE</code>=0, the default, disables all use of virtual space.</p> + <p><code>SCVS_NOWRAPLINESTART</code> 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.</p> <p> <b id="SCI_SETRECTANGULARSELECTIONMODIFIER">SCI_SETRECTANGULARSELECTIONMODIFIER(int modifier)</b><br /> 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. </li> <li> + SCVS_NOWRAPLINESTART option stops left arrow from wrapping to the previous line. + Most commonly wanted when virtual space is used. + <a href="http://sourceforge.net/p/scintilla/bugs/1648/">Bug #1648</a>. + </li> + <li> The HTML lexer no longer treats "<?" inside a string in a script as potentially starting an XML document. <a href="http://sourceforge.net/p/scintilla/bugs/767/">Bug #767</a>. </li> |