aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorZufu Liu <unknown>2022-07-30 09:00:32 +1000
committerZufu Liu <unknown>2022-07-30 09:00:32 +1000
commita91e4af5c5fbbe464093e24ae39f980b56598847 (patch)
treeac6869d1ec21269c23954a931a334a002800c934 /doc
parent987598c6d853eac0a99bbf97f4fe847874652ed3 (diff)
downloadscintilla-mirror-a91e4af5c5fbbe464093e24ae39f980b56598847.tar.gz
Bug [#2340] Add option to contract every level for SCI_FOLDALL called
SC_FOLDACTION_CONTRACT_EVERY_LEVEL. Avoid processing lines multiple times.
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html6
-rw-r--r--doc/ScintillaHistory.html5
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index bcbc88152..dfa138b29 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -7591,6 +7591,12 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<td align="left">Toggle between contracted and expanded.</td>
</tr>
+ <tr>
+ <td align="left">SC_FOLDACTION_CONTRACT_EVERY_LEVEL</td>
+ <td align="left">4</td>
+ <td align="left">Used for SCI_FOLDALL only, can be combined with SC_FOLDACTION_CONTRACT or SC_FOLDACTION_TOGGLE to contract all levels instead of only top-level.</td>
+ </tr>
+
</tbody>
</table>
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 08c00bf86..1188fbc00 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -605,6 +605,11 @@
<a href="https://sourceforge.net/p/scintilla/feature-requests/1441/">Feature #1441</a>.
</li>
<li>
+ Add SC_FOLDACTION_CONTRACT_EVERY_LEVEL option to contract every level for
+ SCI_FOLDALL.
+ <a href="https://sourceforge.net/p/scintilla/bugs/2340/">Bug #2340</a>.
+ </li>
+ <li>
Enable multiline regex for gcc and clang when REGEX_MULTILINE defined.
This requires gcc 11.3 or clang 14.
<a href="https://sourceforge.net/p/scintilla/bugs/2338/">Bug #2338</a>.