about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-24 01:39:52 +0100
committerJames Booth <boothj5@gmail.com>2012-10-24 01:39:52 +0100
commit8322c48d3e580e3f098b031554932924cde2fc00 (patch)
tree2728862c20494351e3106174e20d21a57807f7e8 /src
parent2ca8f5b62eb0d35e570a3c3c9418cf1c00a202fa (diff)
downloadprofani-tty-8322c48d3e580e3f098b031554932924cde2fc00.tar.gz
Added autocomplete for version checking parameter
Diffstat (limited to 'src')
-rw-r--r--src/command.c1
-rw-r--r--src/input_win.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c
index adf3ddf0..bedadfda 100644
--- a/src/command.c
+++ b/src/command.c
@@ -617,6 +617,7 @@ _cmd_help(const char * const inp, struct cmd_help_t help)
 static gboolean
 _cmd_about(const char * const inp, struct cmd_help_t help)
 {
+    cons_show("");
     cons_about();
     return TRUE;
 }
diff --git a/src/input_win.c b/src/input_win.c
index 9ee71ce1..3cb903e1 100644
--- a/src/input_win.c
+++ b/src/input_win.c
@@ -372,6 +372,8 @@ _handle_edit(const int ch, char *input, int *size)
             prefs_autocomplete_boolean_choice);
         _parameter_autocomplete(input, size, "/history",
             prefs_autocomplete_boolean_choice);
+        _parameter_autocomplete(input, size, "/vercheck",
+            prefs_autocomplete_boolean_choice);
 
         return 1;