File: 0015-fix-fish-integration-test.patch

package info (click to toggle)
kitty 0.44.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,540 kB
  • sloc: ansic: 84,052; python: 57,643; objc: 5,365; sh: 1,319; xml: 364; makefile: 144; javascript: 78
file content (22 lines) | stat: -rw-r--r-- 826 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From 456fa8691a94f99fae0cef7f19dd2c85c208445a Mon Sep 17 00:00:00 2001
From: Kovid Goyal <kovid@kovidgoyal.net>
Date: Tue, 11 Nov 2025 09:35:55 +0530
Subject: [PATCH] Fix #9211

---
 kitty_tests/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kitty_tests/__init__.py b/kitty_tests/__init__.py
index bd9ce655f0a..2af8f7a3cff 100644
--- a/kitty_tests/__init__.py
+++ b/kitty_tests/__init__.py
@@ -402,7 +402,7 @@ def write_to_child(self, data, flush=False):
             self.process_input_from_child(0)
 
     def send_da1_response(self, data: str) -> None:
-        self.write_to_child('\x1b[' + data, flush=True)
+        self.write_to_child('\x1b[' + data, flush=False) # ]]]]]]
 
     def send_cmd_to_child(self, cmd, flush=False):
         self.callbacks.last_cmd_exit_status = sys.maxsize