diff options
author | C. McEnroe | 2020-02-07 01:55:26 -0500 |
---|---|---|
committer | C. McEnroe | 2020-02-07 01:56:23 -0500 |
commit | af244ad3cd19fb50bf9b9855f02d81e61441ab50 (patch) | |
tree | 4ecd69f0d6fc8f041823e4d5846467ce0b7c1709 /chat.h | |
parent | 5470254fa5fd0f6108b1f075d9ac2dd24afa7fdc (diff) |
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, }; |