diff options
author | James Booth <boothj5@gmail.com> | 2014-01-13 19:00:34 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-13 19:00:34 +0000 |
commit | 671fa839e8f41b28a792893e7e1a42056f768594 (patch) | |
tree | 4ee98b3ba0c477cfd2ad86165f06d03f3c08ebd5 /src | |
parent | aa4dede30aac6222d9299e45ad6076f14819b53c (diff) | |
download | profani-tty-671fa839e8f41b28a792893e7e1a42056f768594.tar.gz |
Added contact autocompletion to /otr start <contact>
Diffstat (limited to 'src')
-rw-r--r-- | src/command/command.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/command/command.c b/src/command/command.c index 9bab19da..2d03db5a 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1564,6 +1564,11 @@ _otr_autocomplete(char *input, int *size) { char *result = NULL; + result = autocomplete_param_with_func(input, size, "/otr start", roster_find_contact); + if (result != NULL) { + return result; + } + result = autocomplete_param_with_ac(input, size, "/otr", otr_ac); if (result != NULL) { return result; |