diff options
author | Martijn Laan <1092369+martijnlaan@users.noreply.github.com> | 2024-07-31 21:49:44 +1000 |
---|---|---|
committer | Martijn Laan <1092369+martijnlaan@users.noreply.github.com> | 2024-07-31 21:49:44 +1000 |
commit | 0d6fd0c6bc452f41919bbdf8dcc9b3d6fbc83205 (patch) | |
tree | 44ea2ccd2b37a031cfda50a93c06ce8cd4acf0b2 /doc | |
parent | 1cccf5165b891eb95c85932474bb872ab0fbe638 (diff) | |
download | scintilla-mirror-0d6fd0c6bc452f41919bbdf8dcc9b3d6fbc83205.tar.gz |
Feature [feature-requests:#1524]. Add SCI_LINEINDENT and SCI_LINEDEDENT.
These force the multiline behaviour of SCI_TAB and SCI_BACKTAB.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 6 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index b9a5971b2..b320621cf 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -6929,6 +6929,9 @@ struct Sci_TextToFindFull { <td><code>SCI_VERTICALCENTRECARET</code></td> + <td><code>SCI_LINEINDENT</code></td> + + <td><code>SCI_LINEDEDENT</code></td> </tr> <tr> @@ -6971,6 +6974,9 @@ struct Sci_TextToFindFull { as appropriate for <code>SCI_[[VC]HOME|LINEEND]*</code>. </p> + <p>The <code>SCI_LINE[INDENT|DEDENT]</code> commands are like <code>SCI_[BACK]TAB</code> but force the + multiline behaviour of the second.</p> + <p>The <code>SCI_SCROLLTO[START|END]</code> commands scroll the document to the start or end without changing the selection. These commands match macOS platform conventions for the behaviour of the <code>home</code> and <code>end</code> keys. Scintilla can be made to match macOS applications diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 3a820fb92..90e82cc41 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -599,6 +599,10 @@ <li> Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and its nesting depth. </li> + <li> + Add SCI_LINEINDENT and SCI_LINEDEDENT. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1524/">Feature #1524</a>. + </li> </ul> <h3> <a href="https://www.scintilla.org/scintilla551.zip">Release 5.5.1</a> |