aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html14
-rw-r--r--doc/ScintillaHistory.html4
2 files changed, 15 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>
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 9b1b9241c..e91c51501 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -523,6 +523,7 @@
<td>Nicholai Benalal</td>
</tr><tr>
<td>Andreas Rönnquist</td>
+ <td>Henrik Hank</td>
</tr>
</table>
<p>
@@ -561,6 +562,9 @@
to fully transparent at top and bottom.
</li>
<li>
+ Wrap indent mode SC_WRAPINDENT_DEEPINDENT added which indents two tabs from previous line.
+ </li>
+ <li>
Indicators are drawn for line end characters when displayed.
</li>
<li>