From 0fbe1559c8a62a87ea3af19366220bd790179f4c Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Sun, 4 Nov 2012 00:04:56 +0100 Subject: [PATCH] Fixing meta+return. Thanks Szabolcs Nagy! --- st.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/st.c b/st.c index 4c6783b..f063029 100644 --- a/st.c +++ b/st.c @@ -2694,6 +2694,9 @@ kpress(XEvent *ev) { selpaste(); break; case XK_Return: + if(meta) + ttywrite("\033", 1); + if(IS_SET(MODE_CRLF)) { ttywrite("\r\n", 2); } else {