diff options
author | June McEnroe <june@causal.agency> | 2020-02-07 01:55:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-07 01:56:23 -0500 |
commit | af244ad3cd19fb50bf9b9855f02d81e61441ab50 (patch) | |
tree | 4ecd69f0d6fc8f041823e4d5846467ce0b7c1709 /chat.h | |
parent | Add simple configure script (diff) | |
download | catgirl-af244ad3cd19fb50bf9b9855f02d81e61441ab50.tar.gz catgirl-af244ad3cd19fb50bf9b9855f02d81e61441ab50.zip |
Add some real line editing operations
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chat.h b/chat.h index 8279d1b..a327620 100644 --- a/chat.h +++ b/chat.h @@ -133,7 +133,12 @@ void uiFormat( ) __attribute__((format(printf, 4, 5))); enum Edit { + EditHome, + EditEnd, + EditLeft, + EditRight, EditKill, + EditErase, EditInsert, EditEnter, }; |