From dbb94fc1ffe496615289737de3d8135287b997a4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 7 Jun 2018 13:12:15 +0530 Subject: [PATCH] Fix wrap markers not being added when getting the history buf as text --- kitty/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/window.py b/kitty/window.py index 97294dd4e..91b0bace0 100644 --- a/kitty/window.py +++ b/kitty/window.py @@ -403,7 +403,7 @@ class Window: f(lines.append, as_ansi, add_wrap_markers) if add_history: h = [] - self.screen.historybuf.as_text(h.append, as_ansi) + self.screen.historybuf.as_text(h.append, as_ansi, add_wrap_markers) lines = h + lines return ''.join(lines)