From 3d82ea91464265f334f99ad26b919f6a9678799d Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 16 Mar 2026 05:52:16 -0400 Subject: Start+E exits when anything hides the editbox (like, pressing Return or Shift-Clear or Start+Up). --- TODO | 4 +--- src/edbox.c | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index 83d8654..5ad3903 100644 --- a/TODO +++ b/TODO @@ -12,9 +12,7 @@ FujiChat features, we're almost at parity! Other stuff: -- The Start+E editbox-only mode should be exited when the user - presses Return (or shift-clear, or I guess anything that hides - the editbox). +- The Start+E editbox-only mode should also show the status bar. - Status indicators # M J etc should disappear at some point. When the user switches windows. Also maybe there should be a timer. - ^U works, but is slow (calls backspace() in a loop, which does a diff --git a/src/edbox.c b/src/edbox.c index 8f325c2..f2b309f 100644 --- a/src/edbox.c +++ b/src/edbox.c @@ -45,6 +45,7 @@ void edbox_show(void) { } void edbox_hide(void) { + scr_end_scrollback(); /* exit Start+E mode */ edbox_visible = 0; scr_refresh(); } -- cgit v1.2.3