diff options
author | Zufu Liu <unknown> | 2023-12-21 16:00:00 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2023-12-21 16:00:00 +1100 |
commit | 8e55cc0c973cc2fbaac8cca1505524b86ce58dff (patch) | |
tree | 0cf01d056b0c92de62b811466495a42d82a7879b /src/RESearch.h | |
parent | 1b153f8d8d4b2f09afc2d039256c958e94bd3b05 (diff) | |
download | scintilla-mirror-8e55cc0c973cc2fbaac8cca1505524b86ce58dff.tar.gz |
Bug [#2405]. Avoid character fragments in regular expression search results.
Diffstat (limited to 'src/RESearch.h')
-rw-r--r-- | src/RESearch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/RESearch.h b/src/RESearch.h index e3a9c8110..a6b9ac22e 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -14,6 +14,7 @@ namespace Scintilla::Internal { class CharacterIndexer { public: virtual char CharAt(Sci::Position index) const=0; + virtual Sci::Position MovePositionOutsideChar(Sci::Position pos, [[maybe_unused]] Sci::Position moveDir) const noexcept=0; }; class RESearch { |