From 255802d8d7357bf985bf2e4221eac8ab64b348ea Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 29 Jan 2021 09:48:43 +0000 Subject: Trim output overwritten by later text or clears completely rather than only in a few cases. This means we can better track when a line should wrap. GitHub issue 2537. --- format.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'format.c') diff --git a/format.c b/format.c index df1898a6..25b80249 100644 --- a/format.c +++ b/format.c @@ -3038,9 +3038,6 @@ format_defaults_pane(struct format_tree *ft, struct window_pane *wp) format_add_cb(ft, "history_bytes", format_cb_history_bytes); format_add_cb(ft, "history_all_bytes", format_cb_history_all_bytes); - format_add(ft, "pane_written", "%zu", wp->written); - format_add(ft, "pane_skipped", "%zu", wp->skipped); - if (window_pane_index(wp, &idx) != 0) fatalx("index not found"); format_add(ft, "pane_index", "%u", idx); -- cgit