about summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-30 14:56:26 -0400
committerJune McEnroe <june@causal.agency>2020-03-30 14:56:26 -0400
commita0dde10cb61ec2c320103a215172841de636bd03 (patch)
tree182d9675f1ab3a0fff276f0d33c7b4246e463f13 /ui.c
parentTab complete from last iswspace (diff)
downloadcatgirl-a0dde10cb61ec2c320103a215172841de636bd03.tar.gz
catgirl-a0dde10cb61ec2c320103a215172841de636bd03.zip
Add text macros
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c
index 31fe276..9c1b238 100644
--- a/ui.c
+++ b/ui.c
@@ -917,6 +917,7 @@ static void keyCtrl(wchar_t ch) {
 		break; case L'U': edit(id, EditDeleteHead, 0);
 		break; case L'V': windowScroll(window, -(PAGE_LINES - 2));
 		break; case L'W': edit(id, EditDeletePrevWord, 0);
+		break; case L'X': edit(id, EditExpand, 0);
 		break; case L'Y': edit(id, EditPaste, 0);
 	}
 }