about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorWill Song <incertia9474@gmail.com>2014-11-27 12:11:47 -0600
committerWill Song <incertia9474@gmail.com>2014-11-27 12:11:47 -0600
commitb5a40f5b04c8e4fc669dabb4dddbad534d618ce4 (patch)
tree4deb8745acb495f8311d6e8834ea6a2676fdbff0
parent48778265e73d6dc45c9b85a574144ab9bc2ce07d (diff)
downloadprofani-tty-b5a40f5b04c8e4fc669dabb4dddbad534d618ce4.tar.gz
finish /account default ac
-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",