about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-13 19:00:34 +0000
committerJames Booth <boothj5@gmail.com>2014-01-13 19:00:34 +0000
commit671fa839e8f41b28a792893e7e1a42056f768594 (patch)
tree4ee98b3ba0c477cfd2ad86165f06d03f3c08ebd5 /src
parentaa4dede30aac6222d9299e45ad6076f14819b53c (diff)
downloadprofani-tty-671fa839e8f41b28a792893e7e1a42056f768594.tar.gz
Added contact autocompletion to /otr start <contact>
Diffstat (limited to 'src')
-rw-r--r--src/command/command.c5
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;