File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1794,7 +1794,7 @@ Scintilla Methods
17941794
17951795.. method :: editor.getSelectionHidden() -> bool
17961796
1797-
1797+
17981798
17991799 See Scintilla documentation for `SCI_GETSELECTIONHIDDEN <https://www.scintilla.org/ScintillaDoc.html#SCI_GETSELECTIONHIDDEN >`_
18001800
@@ -5229,6 +5229,10 @@ Helper Methods
52295229 that from Notepad++, which is actually the `Boost::Regex <https://www.boost.org/doc/libs/1_80_0/libs/regex/doc/html/index.html >`_
52305230 implementation (specifically the Perl regular expression syntax).
52315231
5232+ IMPORTANT NOTE:
5233+ The replace function provided to editor.rereplace should not invoke additional calls to editor.rereplace or other replacement functions
5234+ that modify the same text being processed. Doing so may result in unpredictable behavior.
5235+
52325236
52335237 ``flags `` are from the re module (e.g. ``re.IGNORECASE ``), so ``import re `` if you use the flags.
52345238
You can’t perform that action at this time.
0 commit comments