From ef6518a6271b2e645a770e4bcce6eaaaaa08bf5d Mon Sep 17 00:00:00 2001 From: C. McEnroe Date: Mon, 23 Mar 2020 15:03:55 -0400 Subject: Add M-Enter to insert a newline --- ui.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 0500118..31fe276 100644 --- a/ui.c +++ b/ui.c @@ -205,6 +205,7 @@ static short colorPair(short fg, short bg) { X(KeyMetaM, "\33m", NULL) \ X(KeyMetaU, "\33u", NULL) \ X(KeyMetaV, "\33v", NULL) \ + X(KeyMetaEnter, "\33\r", "\33\n") \ X(KeyMetaSlash, "\33/", NULL) \ X(KeyFocusIn, "\33[I", NULL) \ X(KeyFocusOut, "\33[O", NULL) \ @@ -861,6 +862,7 @@ static void keyCode(int code) { break; case KeyFocusIn: unmark(window); break; case KeyFocusOut: mark(window); + break; case KeyMetaEnter: edit(id, EditInsert, L'\n'); break; case KeyMetaSlash: windowShow(windows.swap); break; case KeyMetaA: showAuto(); -- cgit 1.4.1-2-gfad0