Skip to content

Commit

Permalink
Fix #8262
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Jan 27, 2025
1 parent 1f33677 commit 4f0f9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kitty_tests/shell_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4f0f9b9

Please sign in to comment.