about summary refs log tree commit diff stats
path: root/src/command/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/command.c')
-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;