cshnik
cshnik
General ``EDITFINDREPLACE`` structure contains the following text buffers: 512 - is the max string length (including trailing 0) internally allowed (for now) for proper Find/Replace work. Other procs use predefined...
MSDN states edit control text length limits ([EM_LIMITTEXT](https://docs.microsoft.com/en-us/windows/win32/controls/em-limittext)): > For single-line edit controls, the text limit is either 0x7FFFFFFE bytes or the value of the wParam parameter, whichever is smaller....
Cannot Reproduce. Please provide the test file and sample string, video for the issue (if available).
Fixed. The issue was resolved by the partial rollback of the changes from 709f966e (initial commit for #101). The points are: 1. "Save recent files on exit" checkbox maps to...
``Transform backslash`` option is initially compatible with ``Regular expression search`` mode: ``` void TransformBackslashes(char *pszInput, BOOL bRegEx, UINT cpEdit) { if (bRegEx) UnSlashLowOctal(pszInput); else UnSlash(pszInput, cpEdit); } ``` Where: ```...
Please consider changes (committed to temporary branch) related to Scintilla code required for feature implementation.
> Great. Merge the branch if ready and delete it. Done.
> Let's add two more similar hotkeys: > > * Alt+Backspace (`bW` in Vim) - like Ctrl+Backspace, with inverted WordNavigationMode > > * Notepad2 is using it for Undo, remove...