From 463b67e23ebe42134a1cf0f62569b7c772e9ed66 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 17 Mar 2026 06:56:38 -0400 Subject: Channel tab completion for the [server] screen. --- src/edbox.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/edbox.c') diff --git a/src/edbox.c b/src/edbox.c index 5d529d3..2bb1cef 100644 --- a/src/edbox.c +++ b/src/edbox.c @@ -272,6 +272,11 @@ void edbox_keystroke(void) { show_cursor(); } +void edbox_space(void) { + edit_box[edbox_len++] = ' '; + edbox_pos = edbox_len; +} + void edbox_set(char *contents) { edbox_clear(); while(*contents) { -- cgit v1.2.3