aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorZufu Liu <unknown>2021-08-24 11:14:20 +1000
committerZufu Liu <unknown>2021-08-24 11:14:20 +1000
commit02914e8e53c3e72e9fc3a05f8e75078cad4eb0f6 (patch)
treeb7894f557a313bad18445d13eca2b82039b8c9f9 /doc
parent3ef8c4b037c622f910a0d13bba91657df1f78d9d (diff)
downloadscintilla-mirror-02914e8e53c3e72e9fc3a05f8e75078cad4eb0f6.tar.gz
Feature [feature-requests:#841] SCI_SETCARETLINEHIGHLIGHTSUBLINE enables
highlighting just the subline with the caret when wrapping is on.
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html8
-rw-r--r--doc/ScintillaHistory.html5
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 245b467c4..01f65cbd1 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -3586,6 +3586,8 @@ struct Sci_TextToFind {
<a class="message" href="#SCI_GETCARETLINEFRAME">SCI_GETCARETLINEFRAME &rarr; int</a><br />
<a class="message" href="#SCI_SETCARETLINEVISIBLEALWAYS">SCI_SETCARETLINEVISIBLEALWAYS(bool alwaysVisible)</a><br />
<a class="message" href="#SCI_GETCARETLINEVISIBLEALWAYS">SCI_GETCARETLINEVISIBLEALWAYS &rarr; bool</a><br />
+ <a class="message" href="#SCI_SETCARETLINEHIGHLIGHTSUBLINE">SCI_SETCARETLINEHIGHLIGHTSUBLINE(bool subLine)</a><br />
+ <a class="message" href="#SCI_GETCARETLINEHIGHLIGHTSUBLINE">SCI_GETCARETLINEHIGHLIGHTSUBLINE &rarr; bool</a><br />
<br />
<a class="message" href="#SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int periodMilliseconds)</a><br />
<a class="message" href="#SCI_GETCARETPERIOD">SCI_GETCARETPERIOD &rarr; int</a><br />
@@ -3775,6 +3777,12 @@ struct Sci_TextToFind {
Default behaviour <code>SCI_SETCARETLINEVISIBLEALWAYS(false)</code> the caret line is only visible when the window is in focus.
</p>
+ <p><b id="SCI_SETCARETLINEHIGHLIGHTSUBLINE">SCI_SETCARETLINEHIGHLIGHTSUBLINE(bool subLine)</b><br />
+ <b id="SCI_GETCARETLINEHIGHLIGHTSUBLINE">SCI_GETCARETLINEHIGHLIGHTSUBLINE &rarr; bool</b><br />
+ Choose to highlight only the subline containing the caret instead of the whole line.
+ Default behaviour <code>SCI_SETCARETLINEHIGHLIGHTSUBLINE(false)</code> the whole caret line is highlighted.
+ </p>
+
<p><b id="SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int periodMilliseconds)</b><br />
<b id="SCI_GETCARETPERIOD">SCI_GETCARETPERIOD &rarr; int</b><br />
The rate at which the caret blinks can be set with <code>SCI_SETCARETPERIOD</code> which
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index b266c774e..f404bed0b 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -586,6 +586,11 @@
<a href="https://sourceforge.net/p/scintilla/feature-requests/203/">Feature #203</a>.
</li>
<li>
+ Add SCI_SETCARETLINEHIGHLIGHTSUBLINE to highlight just the subline containing the caret instead of
+ the whole document line.
+ <a href="https://sourceforge.net/p/scintilla/feature-requests/841/">Feature #841</a>.
+ </li>
+ <li>
Fix display of fold lines when wrapped so they are only drawn once per line, not on each subline.
</li>
<li>