mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-27 03:42:49 +00:00
Fix wrap markers not being added when getting the history buf as text
This commit is contained in:
parent
b9dd434fab
commit
dbb94fc1ff
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue