mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-10 18:48:54 +02:00
Dont add wrap markers (\r) when showing last command output
This commit is contained in:
@@ -980,7 +980,7 @@ class Window:
|
||||
Requires :ref:`shell_integration` to work
|
||||
''')
|
||||
def show_last_command_output(self) -> None:
|
||||
text = self.last_cmd_output(as_ansi=True, add_wrap_markers=True)
|
||||
text = self.last_cmd_output(as_ansi=True, add_wrap_markers=False)
|
||||
get_boss().display_scrollback(self, text, title='Last command output')
|
||||
|
||||
def paste_bytes(self, text: Union[str, bytes]) -> None:
|
||||
|
||||
Reference in New Issue
Block a user