]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.2.0389: DECRQM still leaves stray "pp" on Apple Terminal.app v9.2.0389
authorHirohito Higashi <h.east.727@gmail.com>
Wed, 22 Apr 2026 20:22:25 +0000 (20:22 +0000)
committerChristian Brabandt <cb@256bit.org>
Wed, 22 Apr 2026 20:29:08 +0000 (20:29 +0000)
Problem:  DECRQM was still sent to Apple Terminal.app before its DA2
          reply was processed, leaving a literal "pp" on screen.
          may_req_decrqm() was called from vim_main2()
          right after may_req_termresponse(), at which point
          term_props[TPR_DECRQM].tpr_status was still TPR_UNKNOWN, so
          the `!= TPR_NO` guard let the request through (after v9.2.0387)
Solution: Send DECRQM from handle_version_response() once
          term_props[TPR_DECRQM].tpr_status == TPR_YES, the same
          pattern already used for t_RS (TPR_CURSOR_STYLE) and t_RC
          (TPR_CURSOR_BLINK), which deliberately wait for the DA2
          reply to avoid the same echo-on-screen issue on Apple
          Terminal.app and Gnome terminal.  Drop the now-unused
          may_req_decrqm() helper and its call site in vim_main2()
          (Hirohito Higashi).

fixes:   #19852
related: #19938
closes:  #20038

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: John Marriott <basilisk@internode.on.net>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/main.c
src/proto/term.pro
src/term.c
src/version.c

index e0d0e7e37f25376bc8382fb7d9bf3a96447fdcdb..cac5db145ef3564db187f1dce5530d1703441024 100644 (file)
@@ -892,10 +892,6 @@ vim_main2(void)
     may_req_termresponse();
 
     may_req_bg_color();
-
-    // Same reason as for termresponse: don't want the terminal sending out
-    // the DECRPM response after Vim has exited.
-    may_req_decrqm();
 # endif
 
     // start in insert mode
index 5ec909f46c9b1a83b9520da1b8d33c08b1541c02..9653a35af3bce9fec1998e144614f303815e713a 100644 (file)
@@ -60,7 +60,6 @@ void stoptermcap(void);
 void may_req_termresponse(void);
 void check_terminal_behavior(void);
 void may_req_bg_color(void);
-void may_req_decrqm(void);
 int swapping_screen(void);
 void scroll_start(void);
 void cursor_on_force(void);
index 876e15d95068e2a2167f78ef01177a8acc264b21..07eb5974b7ebd8b948c6a28516ae8ba1147673c1 100644 (file)
@@ -690,15 +690,17 @@ static tcap_entry_T builtin_sync_output[] = {
 };
 #endif
 
+#ifdef FEAT_TERMRESPONSE
 /*
  * List of DECRQM modes that Vim supports
  */
 static const int dec_modes[] = {
     2026,   // Synchronized output
-#ifdef UNIX
+# ifdef UNIX
     2048    // In-band terminal resize events
-#endif
+# endif
 };
+#endif
 
 #ifdef FEAT_TERMGUICOLORS
 /*
@@ -4312,36 +4314,6 @@ may_req_bg_color(void)
     }
 }
 
-/*
- * Query the settings for the DEC modes we support via DECRQM.
- * Only sent once, and only when the terminal is known not to dislike it
- * (i.e. TPR_DECRQM is TPR_YES, or still TPR_UNKNOWN when the version response
- * has not yet been received).
- * The DECRPM responses are caught in handle_csi().
- */
-    void
-may_req_decrqm(void)
-{
-    if (decrqm_status.tr_progress == STATUS_GET
-           && term_props[TPR_DECRQM].tpr_status != TPR_NO
-           && can_get_termresponse()
-           && starting == 0)
-    {
-       MAY_WANT_TO_LOG_THIS;
-       LOG_TR1("Sending DECRQM requests");
-       for (int i = 0; i < (int)ARRAY_LENGTH(dec_modes); i++)
-       {
-           vim_snprintf((char *)IObuff, IOSIZE, "\033[?%d$p", dec_modes[i]);
-           out_str(IObuff);
-       }
-       termrequest_sent(&decrqm_status);
-       // check for the characters now, otherwise they might be eaten by
-       // get_keystroke()
-       out_flush();
-       (void)vpeekc_nomap();
-    }
-}
-
 #endif
 
 /*
@@ -5398,6 +5370,23 @@ handle_version_response(int first, int *arg, int argc, char_u *tp)
            need_flush = TRUE;
        }
 
+       // Only request DEC modes via DECRQM when the terminal is known to
+       // handle it.  Not for Apple Terminal.app or GNU screen, they echo
+       // the trailing "p" to the screen.  See issue #19852.
+       if (decrqm_status.tr_progress == STATUS_GET
+               && term_props[TPR_DECRQM].tpr_status == TPR_YES)
+       {
+           MAY_WANT_TO_LOG_THIS;
+           LOG_TR1("Sending DECRQM requests");
+           for (int i = 0; i < (int)ARRAY_LENGTH(dec_modes); i++)
+           {
+               vim_snprintf((char *)IObuff, IOSIZE, "\033[?%d$p", dec_modes[i]);
+               out_str(IObuff);
+           }
+           termrequest_sent(&decrqm_status);
+           need_flush = TRUE;
+       }
+
        if (need_flush)
            out_flush();
 #endif
index 95f20bc670ac884f7b03dc2ea50e55152fe91993..bfd90a13fcfca9f90870c00305d65ac74f11cb3e 100644 (file)
@@ -729,6 +729,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    389,
 /**/
     388,
 /**/