Add 'info' option to show additional info screen by default

Suggested-by: @Berzerker
Signed-off-by: Thomas Graf <tgraf@suug.ch>
This commit is contained in:
Thomas Graf 2016-03-29 12:22:56 +02:00
parent 0e08ec1b79
commit f78c0e5b98

View File

@ -1257,6 +1257,7 @@ static void print_module_help(void)
" nocolors Do not use colors\n" \
" graph Show graphical stats by default\n" \
" details Show detailed stats by default\n" \
" info Show additional info screen by default\n" \
" minlist=INT Minimum item list length\n");
}
@ -1279,6 +1280,8 @@ static void curses_parse_opt(const char *type, const char *value)
c_show_graph = !!c_ngraph;
} else if (!strcasecmp(type, "details"))
c_show_details = 1;
else if (!strcasecmp(type, "info"))
c_show_info = 1;
else if (!strcasecmp(type, "nocolors"))
c_use_colors = 0;
else if (!strcasecmp(type, "minlist") && value)