about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-09 03:56:18 -0500
committerJune McEnroe <june@causal.agency>2020-02-09 03:58:13 -0500
commitd7c96fc81b71b77b30511d6526fe3acaa84c39ee (patch)
tree8a3bafe6dc5fca996b2da40a4905d70ee2eab52a /chat.h
parentAdd C-d (diff)
downloadcatgirl-d7c96fc81b71b77b30511d6526fe3acaa84c39ee.tar.gz
catgirl-d7c96fc81b71b77b30511d6526fe3acaa84c39ee.zip
Add C-k
Also rename all the edit ops to something consistent.
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/chat.h b/chat.h
index d6d9e1c..aa1bcc1 100644
--- a/chat.h
+++ b/chat.h
@@ -145,13 +145,14 @@ void uiFormat(
 ) __attribute__((format(printf, 4, 5)));
 
 enum Edit {
-	EditHome,
-	EditEnd,
-	EditLeft,
-	EditRight,
-	EditKill,
-	EditErase,
-	EditDelete,
+	EditHead,
+	EditTail,
+	EditPrev,
+	EditNext,
+	EditKillPrev,
+	EditKillNext,
+	EditDeletePrev,
+	EditDeleteNext,
 	EditInsert,
 	EditComplete,
 	EditEnter,