From 246eff2298ef5732a9c271f8b3a1c4a015597b48 Mon Sep 17 00:00:00 2001 From: Dmitry Sapozhnikov <11535558+o-sdn-o@users.noreply.github.com> Date: Thu, 28 May 2026 01:18:09 +0500 Subject: [PATCH 1/2] Fix Neovim redraw locking on window resize --- src/netxs/desktopio/terminal.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/netxs/desktopio/terminal.hpp b/src/netxs/desktopio/terminal.hpp index a1c1448346..3fd1ac5a6f 100644 --- a/src/netxs/desktopio/terminal.hpp +++ b/src/netxs/desktopio/terminal.hpp @@ -9378,12 +9378,10 @@ namespace netxs::ui case 2027: // Unicode Core (support grapheme clusters). reply = "3"; break; - case 2048: // Graphics. Always on. - reply = "3"; - break; case 2026: // Synchronized Updates. We do not support this mode (we rely on lazy rendering). reply = "4"; break; + case 2048: // Graphics. Not supported. case 69: // Left/Right Margins. We don't support this mode. case 2031: // Extended Keys / Kitty Keyboard Protocol. default: From ffddab54934cc0521b013d61d8c4458a4f892885 Mon Sep 17 00:00:00 2001 From: Dmitry Sapozhnikov <11535558+o-sdn-o@users.noreply.github.com> Date: Thu, 28 May 2026 01:19:04 +0500 Subject: [PATCH 2/2] v2026.05.27 --- src/netxs/desktopio/application.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netxs/desktopio/application.hpp b/src/netxs/desktopio/application.hpp index ecb99aa48a..e1df475c43 100644 --- a/src/netxs/desktopio/application.hpp +++ b/src/netxs/desktopio/application.hpp @@ -22,7 +22,7 @@ namespace netxs::app namespace netxs::app::shared { - static const auto version = "v2026.05.26"; + static const auto version = "v2026.05.27"; static const auto repository = "https://github.com/directvt/vtm"; static const auto usr_config = "~/.config/vtm/settings.xml"s; static const auto sys_config = "/etc/vtm/settings.xml"s;