We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b75e5e commit e0b44e2Copy full SHA for e0b44e2
src/commands.c
@@ -6,12 +6,12 @@
6
#include "util.h"
7
8
static const char* quit_matches[] = {"quit"};
9
-static const char* help_matches[] = {"help"};
+static const char* help_matches[] = {"help", "?"};
10
11
static void print_commands_help() {
12
puts(" Commands available:\n");
13
- puts(" :quit \tExit laco");
14
- puts(" :help \tDisplay this list of commands");
+ puts(" :quit \tExit laco");
+ puts(" :help, :? \tDisplay this list of commands");
15
}
16
17
static inline bool is_quit(const char* command) {
0 commit comments