Before, a missing npcNoInputC0 config.xml entry caused the feature to incorrectly reset to false/no (the default for any missing config.xml boolean setting) during the first launch of the Notepad++.
Fix#16326, fix#15839, fix#15729, close#16338
Make right-click message handler x-margin calculation right.
Previously, the incorrectly used unsigned variable (size_t) overflowed with negative numbers due to incorrect calculation of margin size.x (where possible horizontal scrolling was not taken into account...).
Fix#16325, close#16332
Fix plugin button hidings settings being ignored bug in toolbar button config,
if the value of "hideAll" attribute of "Standard" node in "toolbarButtonsConf.xml" is set to "yes".
Fix#16280, close#16285
Release 5.5.5 (https://www.scintilla.org/scintilla555.zip)
Released 25 February 2025.
Remember selection with undo and redo. Controlled with SCI_SETUNDOSELECTIONHISTORY. Feature #1273, Bug #1479, Bug #1224.
Serialize selection type and ranges with SCI_GETSELECTIONSERIALIZED and SCI_SETSELECTIONSERIALIZED.
For Win32, update Direct2D and DirectWrite interfaces used to 1.1 and add a lower-level approach to calling DirectWrite 1.1 by specifying SC_TECHNOLOGY_DIRECT_WRITE_1. Since Windows Vista does not support these API versions, Scintilla o longer supports DirectWrite on Windows Vista and will fall back to using GDI.
Fix segmentation of long lexemes to avoid breaking before modifiers like accents that must be drawn with their base letters. For wrapping, try to break lines without separating letters from modifiers.
For GTK on Windows, replace reverse arrow cursor with hand as reverse arrow was small in scaled modes. Bug #2460.
Fix bug on Qt where double-click stopped working when Scintilla instance had been running for weeks.
Release 5.4.3 (https://www.scintilla.org/lexilla543.zip)
Released 25 February 2025.
C++: Fix evaluation of != in preprocessor condition. Issue #299.
Modula-3: Allow digits in uppercase identifiers. Issue #297.
Pascal: Fix asm style extending past end. Issue #295.
Python: Fix detection of attributes and decorators. Issue #294, Pull request #302.
Ruby: Implement substyles for identifiers SCE_RB_IDENTIFIER.
Ruby: Recognize name as SCE_RB_DEFNAME in def when `::` used as well as `.`. Issue #300.
Close#16235
Synchronize FunctionList panel with the current tab/buffer syntax set.
Ensures automatic switching to the currently used tab/buffer lang.
Before, the FunctionList remained populated according to the previously used lang, even if the user switched to a different one. In such a case a manual FL-reload/re-init was needed.
Fix#16221, close#16245
Move IDC_CHECK_BACKSLASHISESCAPECHARACTERFORSQL BM_SETCHECK from IndentationSubDlg processing to LanguageSubDlg processing to fix the regression in v8.7.
Fix#16249, close#16253