aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/ScintillaDoc.html31
1 files changed, 30 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 81aecb0a7..1ee1c2306 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -130,7 +130,7 @@
<h1>Scintilla Documentation</h1>
- <p>Last edited 23 April 2025 NH</p>
+ <p>Last edited 27 April 2025 NH</p>
<p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new
<a href="Lexilla.html">Lexilla</a> project.<br />
@@ -1326,6 +1326,35 @@ struct Sci_TextRangeFull {
This is most commonly desired in conjunction with virtual space but is an independent
setting so works without virtual space.</p>
+ <table class="standard" summary="Virtual space options">
+ <tbody valign="top">
+ <tr>
+ <th align="left"><code>SCVS_NONE</code></th>
+ <td>0</td>
+ <td>The default: no virtual space.</td>
+ </tr>
+
+ <tr>
+ <th align="left"><code>SCVS_RECTANGULARSELECTION</code></th>
+ <td>1</td>
+ <td>Virtual space is enabled for rectangular selections.</td>
+ </tr>
+
+ <tr>
+ <th align="left"><code>SCVS_USERACCESSIBLE</code></th>
+ <td>2</td>
+ <td>Virtual space is enabled for user actions such as right arrow key or clicking beyond line end.</td>
+ </tr>
+
+ <tr>
+ <th align="left"><code>SCVS_NOWRAPLINESTART</code></th>
+ <td>4</td>
+ <td>Left arrow does not wrap to the previous line.</td>
+ </tr>
+
+ </tbody>
+ </table>
+
<p>
<b id="SCI_SETRECTANGULARSELECTIONMODIFIER">SCI_SETRECTANGULARSELECTIONMODIFIER(int modifier)</b><br />
<b id="SCI_GETRECTANGULARSELECTIONMODIFIER">SCI_GETRECTANGULARSELECTIONMODIFIER &rarr; int</b><br />