On 5/5/26 4:49 AM, Pocket wrote:
That doesn't work on my system, which is a rpi 5 that I have built all the packages using the Archlinux and Alarm PKGBUILDS.

I still see the issue

echo $TERM
xterm-256color

vim -T ansi Nothing
pp


Pocket,

after you open vim, what does:

 :echo v:termresponse

show? It will be something like "^[[>0;115;0c" (mine). Let me know and I'll add that to the bug report.

The problem is a patch to vim /src/term.c:

diff --git a/src/term.c b/src/term.c
index 37f05ed01..300d503b0 100644
--- a/src/term.c
+++ b/src/term.c
@@ -5173,7 +5173,7 @@ handle_version_response(int first, int *arg, int argc, char_u *tp)

        // libvterm sends 0;100;0
        // Konsole sends 0;115;0 and works the same way
-       if ((version == 100 || version == 115) && arg[0] == 0 && arg[2] == 0)
+       if ((version == 100) && arg[0] == 0 && arg[2] == 0)
        {
            // If run from Vim $COLORS is set to the number of
            // colors the terminal supports.  Otherwise assume

That removed recognizing terminals that report 115.

--
David C. Rankin, J.D.,P.E.

Reply via email to