about summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-23 15:03:55 -0400
committerJune McEnroe <june@causal.agency>2020-03-23 15:03:55 -0400
commitef6518a6271b2e645a770e4bcce6eaaaaa08bf5d (patch)
treeff4a155a2131713246fd240863f76cad05b09686 /ui.c
parentHandle bracketed paste, including newlines (diff)
downloadcatgirl-ef6518a6271b2e645a770e4bcce6eaaaaa08bf5d.tar.gz
catgirl-ef6518a6271b2e645a770e4bcce6eaaaaa08bf5d.zip
Add M-Enter to insert a newline
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c2
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();