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 /command.c | |
parent | Tab complete from last iswspace (diff) | |
download | catgirl-a0dde10cb61ec2c320103a215172841de636bd03.tar.gz catgirl-a0dde10cb61ec2c320103a215172841de636bd03.zip |
Add text macros
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c index 914e6cd..8782ee6 100644 --- a/command.c +++ b/command.c @@ -505,7 +505,7 @@ void command(uint id, char *input) { handler->fn(id, input); } -void commandComplete(void) { +void commandCompleteAdd(void) { for (size_t i = 0; i < ARRAY_LEN(Commands); ++i) { completeAdd(None, Commands[i].cmd, Default); } |