diff options
author | June McEnroe <june@causal.agency> | 2020-03-30 14:56:26 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-30 14:56:26 -0400 |
commit | a0dde10cb61ec2c320103a215172841de636bd03 (patch) | |
tree | 182d9675f1ab3a0fff276f0d33c7b4246e463f13 /chat.h | |
parent | Tab complete from last iswspace (diff) | |
download | catgirl-a0dde10cb61ec2c320103a215172841de636bd03.tar.gz catgirl-a0dde10cb61ec2c320103a215172841de636bd03.zip |
Add text macros
Diffstat (limited to '')
-rw-r--r-- | chat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chat.h b/chat.h index 0a84053..545be03 100644 --- a/chat.h +++ b/chat.h @@ -198,7 +198,7 @@ void command(uint id, char *input); const char *commandIsPrivmsg(uint id, const char *input); const char *commandIsNotice(uint id, const char *input); const char *commandIsAction(uint id, const char *input); -void commandComplete(void); +void commandCompleteAdd(void); enum Heat { Cold, Warm, Hot }; extern struct Util uiNotifyUtil; @@ -236,10 +236,12 @@ enum Edit { EditTranspose, EditInsert, EditComplete, + EditExpand, EditEnter, }; void edit(uint id, enum Edit op, wchar_t ch); char *editBuffer(size_t *pos); +void editCompleteAdd(void); const char *complete(uint id, const char *prefix); void completeAccept(void); |