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 | f30e3460821d39e5f3c568b4fecfc108d00dab3f (patch) | |
tree | a273829049c2dbb85c8b91f5becc0ef4be7a5aa0 /doc/ScintillaDoc.html | |
parent | 400282b27f24f78777b591366e6bd2add9f33f1d (diff) | |
download | scintilla-mirror-f30e3460821d39e5f3c568b4fecfc108d00dab3f.tar.gz |
SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line.
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 aed82bbc0..8a8eddbff 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -119,7 +119,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 2 June 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 /> @@ -6429,8 +6429,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> @@ -6444,6 +6446,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> |