diff options
Diffstat (limited to '')
-rw-r--r-- | ui.c | 2 |
1 files changed, 2 insertions, 0 deletions
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(); |