diff options
| author | Neil <nyamatongwe@gmail.com> | 2016-08-20 14:48:31 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2016-08-20 14:48:31 +1000 |
| commit | 4789f4214261e944fa0824f0a536debc8bc45897 (patch) | |
| tree | 237b768697a1e1e9ebae7fae333d333a88d66613 /doc/ScintillaDoc.html | |
| parent | 82b5df1e6a44a6e814ce9ad207ab5e106dd9de1d (diff) | |
| download | scintilla-mirror-4789f4214261e944fa0824f0a536debc8bc45897.tar.gz | |
Bug [#1648]: Option added to prevent left arrow movement and selection wrapping
to previous line.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 9 |
1 files changed, 7 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 /> |
