cshnik
cshnik
Additional test cases: ``` a@b@c 1 abc@b@c 2 ``` Replace from: `^[^@]+@.*$` Replace to: `\n` Result: ``` 1 2 ``` Replace from: `^([^@]+@.*)$` Replace to: `\1X\n\1` Result: ``` a@b@cX a@b@c...
There was a change in ``RESearchRange`` class (came from Scintilla 3.11.2) which caused specified incorrect behavior when using ``BoostRegExSearch``-implementation. Fixed.
> This is a Scintilla bug? Provide details please. Yes, there was a problem with cursor position calculation when working with unicode text. Updated Scintilla_ChangeLog.md.
> I mean if it's a Scintilla bug that should be reported to them or it's a problem with our patches? Created bug for Scintilla: [#2231 Cursor navigation issue in...
> When there is no selection, Find Next Word takes closest word on the right. Make Find Previous Word do the same (currently it takes word on the left). Fixed.
> It seems FindWord... settings are no longer respected Cannot reproduce. In my local tests both ``FindWordMatchCase``/``FindWordWrapAround`` options work as expected when using ``search for word``-commands. Please provide your exact...
> Place cursor at line 1, Space - aa will be selected. This is good. Cannot reproduce. Press on ``Space``-key should insert whitespace character (0x20) and will move whole line...