about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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 095943ec..36205960 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -2790,6 +2790,11 @@ _account_autocomplete(char *input, int *size)
 
     g_strfreev(args);
 
+    found = autocomplete_param_with_ac(input, size, "/account default", account_default_ac, TRUE);
+    if(found){
+        return found;
+    }
+
     int i = 0;
     gchar *account_choice[] = { "/account set", "/account show", "/account enable",
         "/account disable", "/account rename", "/account clear", "/account remove",