From: Jonas Fonseca Date: Sun, 25 Mar 2007 09:14:15 +0000 (+0200) Subject: Disable show-rev-graph by default X-Git-Tag: tig-0.6~2 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/11ce319e4f5162e3104538c342b6efe953b28cf8?hp=71b01db299cae08ae7451659ef31e0abcf799358 Disable show-rev-graph by default It can be enabled by adding set show-rev-graph = yes to ~/.tigrc or toggled by pressing 'g' when in the main viewer. --- diff --git a/tig.c b/tig.c index 8deab13..69d5059 100644 --- a/tig.c +++ b/tig.c @@ -396,7 +396,7 @@ VERSION " (" __DATE__ ")\n" /* Option and state variables. */ static bool opt_line_number = FALSE; -static bool opt_rev_graph = TRUE; +static bool opt_rev_graph = FALSE; static int opt_num_interval = NUMBER_INTERVAL; static int opt_tab_size = TABSIZE; static enum request opt_request = REQ_VIEW_MAIN;