about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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;