qscintilla_docs icon indicating copy to clipboard operation
qscintilla_docs copied to clipboard

when find or replace at regex, such as ^$\r\n,\r\n cannot be recognized.

Open cxasm opened this issue 3 years ago • 0 comments

when find or replace at regex, such as ^$\r\n, The newline symbol at the end of the line cannot be recognized. If you want to replace these characters, you will fail. It's not a good idea。

Sci::Position BuiltinRegex::FindText(Document *doc, Sci::Position minPos, Sci::Position maxPos, const char *s, bool caseSensitive, bool, bool, int flags, ...... Sci::Position startOfLine = doc->LineStart(line); Sci::Position endOfLine = doc->LineEnd(line); ------->myabe to change with LineStart(line+1)

cxasm avatar Oct 31 '22 14:10 cxasm