diff --git a/CommandLine.c b/CommandLine.c
index d21f482..3d97608 100644
--- a/CommandLine.c
+++ b/CommandLine.c
@@ -118,6 +118,7 @@ static CommandLineStatus parseArguments(const char* program, int argc, char** ar
{"no-unicode", no_argument, 0, 'U'},
{"tree", no_argument, 0, 't'},
{"pid", required_argument, 0, 'p'},
+ {"alt-keys", no_argument, 0, 'a'},
{"filter", required_argument, 0, 'F'},
{"highlight-changes", optional_argument, 0, 'H'},
{"readonly", no_argument, 0, 128},
@@ -131,6 +132,9 @@ static CommandLineStatus parseArguments(const char* program, int argc, char** ar
if (opt == EOF)
break;
switch (opt) {
+ case 'a':
+ FunctionBar_useAltKeys(true);
+ break;
case 'h':
This file has been truncated. show original