diff options
author | June McEnroe <june@causal.agency> | 2021-03-07 18:18:37 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-03-07 18:18:37 -0500 |
commit | 8f578ee73d8a8b4b2f94782425cca11c2455a506 (patch) | |
tree | dc288c99f287e93caa48682c71a40f13c3d5d09b /ui.c | |
parent | Add all window names to global completion (diff) | |
download | catgirl-8f578ee73d8a8b4b2f94782425cca11c2455a506.tar.gz catgirl-8f578ee73d8a8b4b2f94782425cca11c2455a506.zip |
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.
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 5 |
1 files changed, 5 insertions, 0 deletions
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); |