mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-28 04:13:44 +00:00
Dont add wrap markers (\r) when showing last command output
This commit is contained in:
parent
8d8095a2d1
commit
35c608ae77
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue