diff options
| author | Zufu Liu <unknown> | 2021-08-24 11:14:20 +1000 |
|---|---|---|
| committer | Zufu Liu <unknown> | 2021-08-24 11:14:20 +1000 |
| commit | 02914e8e53c3e72e9fc3a05f8e75078cad4eb0f6 (patch) | |
| tree | b7894f557a313bad18445d13eca2b82039b8c9f9 /doc/ScintillaDoc.html | |
| parent | 3ef8c4b037c622f910a0d13bba91657df1f78d9d (diff) | |
| download | scintilla-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/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 8 |
1 files changed, 8 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 → int</a><br /> <a class="message" href="#SCI_SETCARETLINEVISIBLEALWAYS">SCI_SETCARETLINEVISIBLEALWAYS(bool alwaysVisible)</a><br /> <a class="message" href="#SCI_GETCARETLINEVISIBLEALWAYS">SCI_GETCARETLINEVISIBLEALWAYS → bool</a><br /> + <a class="message" href="#SCI_SETCARETLINEHIGHLIGHTSUBLINE">SCI_SETCARETLINEHIGHLIGHTSUBLINE(bool subLine)</a><br /> + <a class="message" href="#SCI_GETCARETLINEHIGHLIGHTSUBLINE">SCI_GETCARETLINEHIGHLIGHTSUBLINE → bool</a><br /> <br /> <a class="message" href="#SCI_SETCARETPERIOD">SCI_SETCARETPERIOD(int periodMilliseconds)</a><br /> <a class="message" href="#SCI_GETCARETPERIOD">SCI_GETCARETPERIOD → 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 → 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 → int</b><br /> The rate at which the caret blinks can be set with <code>SCI_SETCARETPERIOD</code> which |
