Skip to content

Commit 37b6677

Browse files
committed
...
1 parent b91809e commit 37b6677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kitty/window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ def show_scrollback(self) -> None:
10961096
cursor_on_screen = self.screen.scrolled_by < self.screen.lines - self.screen.cursor.y
10971097
get_boss().display_scrollback(self, data['text'], data['input_line_number'], report_cursor=cursor_on_screen)
10981098

1099-
def show_cmd_output(self, which: CommandOutput, title: str = 'Command ouptut', as_ansi: bool = True, add_wrap_markers: bool = True) -> None:
1099+
def show_cmd_output(self, which: CommandOutput, title: str = 'Command output', as_ansi: bool = True, add_wrap_markers: bool = True) -> None:
11001100
text = self.cmd_output(which, as_ansi=as_ansi, add_wrap_markers=add_wrap_markers)
11011101
text = text.replace('\r\n', '\n').replace('\r', '\n')
11021102
get_boss().display_scrollback(self, text, title=title, report_cursor=False)

0 commit comments

Comments
 (0)