From 9f75635596d0a01282156eb9e17fde6f4205c05c Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 3 May 2019 20:44:24 +0000 Subject: Allow panes to be empty (no command), output can be piped to them with split-window or display-message -I. --- input.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'input.c') diff --git a/input.c b/input.c index 07341403..20272a62 100644 --- a/input.c +++ b/input.c @@ -1185,6 +1185,8 @@ input_c0_dispatch(struct input_ctx *ictx) case '\013': /* VT */ case '\014': /* FF */ screen_write_linefeed(sctx, 0, ictx->cell.cell.bg); + if (s->mode & MODE_CRLF) + screen_write_carriagereturn(sctx); break; case '\015': /* CR */ screen_write_carriagereturn(sctx); -- cgit