diff options
author | Henrik Hank <unknown> | 2018-06-06 08:55:59 +1000 |
---|---|---|
committer | Henrik Hank <unknown> | 2018-06-06 08:55:59 +1000 |
commit | 2cfe83dc91dbbdd195b17b5446ce595f0c658db2 (patch) | |
tree | 89439af44aff139af5579281200c48fa9c1e1e20 /doc/ScintillaDoc.html | |
parent | c823cbe5c809df5f84a2ef0b867a0733f7568cf0 (diff) | |
download | scintilla-mirror-2cfe83dc91dbbdd195b17b5446ce595f0c658db2.tar.gz |
Backport: SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line.
Backport of changeset 7024:72c92ed3dc10.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 01d2ae108..41ece6fa9 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -116,7 +116,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 17 April 2018 NH</p> + <p>Last edited 6 June 2018 NH</p> <p>There is <a class="jump" href="Design.html">an overview of the internal design of Scintilla</a>.<br /> @@ -6402,8 +6402,10 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <tr> <td align="left"><code>SC_WRAPINDENT_FIXED</code></td> <td align="center">0</td> - <td>Wrapped sublines aligned to left of window plus amount set by - <a class="seealso" href="#SCI_SETWRAPSTARTINDENT">SCI_SETWRAPSTARTINDENT</a></td> + <td> + Wrapped sublines aligned to left of window plus amount set by + <a class="seealso" href="#SCI_SETWRAPSTARTINDENT">SCI_SETWRAPSTARTINDENT</a> + </td> </tr> <tr> @@ -6417,6 +6419,12 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <td align="center">2</td> <td>Wrapped sublines are aligned to first subline indent plus one more level of indentation</td> </tr> + + <tr> + <td align="left"><code>SC_WRAPINDENT_DEEPINDENT</code></td> + <td align="center">3</td> + <td>Wrapped sublines are aligned to first subline indent plus two more levels of indentation</td> + </tr> </tbody> </table> |