about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-09 21:53:29 +0000
committerJames Booth <boothj5@gmail.com>2015-03-09 21:53:29 +0000
commit2c19fad6d63ca3d7ca3e59afd5b371892991411f (patch)
tree89f939cd4266eb4692ddf3adb9ff82c41b172e3d
parent88af6e34559efe93fa241323287631b015ef6f25 (diff)
downloadprofani-tty-2c19fad6d63ca3d7ca3e59afd5b371892991411f.tar.gz
Added /carbons autocompletion
-rw-r--r--src/command/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 0a571d22..6502af75 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -2003,7 +2003,7 @@ _cmd_complete_parameters(const char * const input)
     // autocomplete boolean settings
     gchar *boolean_choices[] = { "/beep", "/intype", "/states", "/outtype",
         "/flash", "/splash", "/chlog", "/grlog", "/mouse", "/history",
-        "/vercheck", "/privileges", "/presence", "/wrap" };
+        "/vercheck", "/privileges", "/presence", "/wrap", "/carbons" };
 
     for (i = 0; i < ARRAY_SIZE(boolean_choices); i++) {
         result = autocomplete_param_with_func(input, boolean_choices[i], prefs_autocomplete_boolean_choice);