From 4f0f9b9aff427547a726fdcfde5dcd99b897570c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 27 Jan 2025 21:13:45 +0530 Subject: [PATCH] Fix #8262 --- kitty_tests/shell_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/shell_integration.py b/kitty_tests/shell_integration.py index 160e5336005..782846acda7 100644 --- a/kitty_tests/shell_integration.py +++ b/kitty_tests/shell_integration.py @@ -94,7 +94,7 @@ def run_shell(self, shell='zsh', rc='', cmd='', setup_env=None): try: if self.with_kitten: cmd = [kitten_exe(), 'run-shell', '--shell', shlex.join(cmd)] - pty = self.create_pty(cmd, cwd=home_dir, env=env) + pty = self.create_pty(cmd, cwd=home_dir, env=env, cols=180) i = 10 while i > 0 and not pty.screen_contents().strip(): pty.process_input_from_child()