diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index f4dfb1e06..6128a6aa6 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4006,6 +4006,7 @@ struct Sci_TextToFind { <a class="message" href="#SCI_BRACEHIGHLIGHTINDICATOR">SCI_BRACEHIGHLIGHTINDICATOR(bool useSetting, int indicator)</a><br /> <a class="message" href="#SCI_BRACEBADLIGHTINDICATOR">SCI_BRACEBADLIGHTINDICATOR(bool useSetting, int indicator)</a><br /> <a class="message" href="#SCI_BRACEMATCH">SCI_BRACEMATCH(position pos, int maxReStyle) → position</a><br /> + <a class="message" href="#SCI_BRACEMATCHNEXT">SCI_BRACEMATCHNEXT(position pos, position startPos) → position</a><br /> </code> <p><b id="SCI_BRACEHIGHLIGHT">SCI_BRACEHIGHLIGHT(position posA, position posB)</b><br /> @@ -4041,6 +4042,10 @@ struct Sci_TextToFind { <code class="parameter">maxReStyle</code> parameter must currently be 0 - it may be used in the future to limit the length of brace searches.</p> + <p><b id="SCI_BRACEMATCHNEXT">SCI_BRACEMATCHNEXT(position pos, position startPos) → position</b><br /> + Similar to <code>SCI_BRACEMATCH</code>, but matching starts at the explicit start position <code>startPos</code> + instead of the implicitly next position <code>pos ± 1</code>.</p> + <h2 id="TabsAndIndentationGuides">Tabs and Indentation Guides</h2> <p>Indentation (the white space at the start of a line) is often used by programmers to clarify |