From 8f578ee73d8a8b4b2f94782425cca11c2455a506 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 7 Mar 2021 18:18:37 -0500 Subject: Add bindings for C-Left and C-Right Apparently these are common. There's no terminfo for these, so manually define the xterm sequences. There's no documentation in the manual for the "intuitive" keys... I'm not sure if that should continue to be the case or not. --- ui.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui.c b/ui.c index dde0d2a..c3ceb0d 100644 --- a/ui.c +++ b/ui.c @@ -177,6 +177,8 @@ static short colorPair(short fg, short bg) { } #define ENUM_KEY \ + X(KeyCtrlLeft, "\33[1;5D", NULL) \ + X(KeyCtrlRight, "\33[1;5C", NULL) \ X(KeyMeta0, "\0330", "\33)") \ X(KeyMeta1, "\0331", "\33!") \ X(KeyMeta2, "\0332", "\33@") \ @@ -938,6 +940,9 @@ static void keyCode(int code) { break; case KeyMetaU: scrollTo(window, window->unreadHard); break; case KeyMetaV: scrollPage(window, +1); + break; case KeyCtrlLeft: edit(id, EditPrevWord, 0); + break; case KeyCtrlRight: edit(id, EditNextWord, 0); + break; case KEY_BACKSPACE: edit(id, EditDeletePrev, 0); break; case KEY_DC: edit(id, EditDeleteNext, 0); break; case KEY_DOWN: windowScroll(window, -1); -- cgit 1.4.1