diff options
author | June McEnroe <june@causal.agency> | 2020-02-09 03:56:18 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-09 03:58:13 -0500 |
commit | d7c96fc81b71b77b30511d6526fe3acaa84c39ee (patch) | |
tree | 8a3bafe6dc5fca996b2da40a4905d70ee2eab52a /chat.h | |
parent | Add C-d (diff) | |
download | catgirl-d7c96fc81b71b77b30511d6526fe3acaa84c39ee.tar.gz catgirl-d7c96fc81b71b77b30511d6526fe3acaa84c39ee.zip |
Add C-k
Also rename all the edit ops to something consistent.
Diffstat (limited to '')
-rw-r--r-- | chat.h | 15 |
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, |