Disable show-rev-graph by default
authorJonas Fonseca <fonseca@diku.dk>
Sun, 25 Mar 2007 09:14:15 +0000 (11:14 +0200)
committerJonas Fonseca <fonseca@diku.dk>
Sun, 25 Mar 2007 09:17:16 +0000 (11:17 +0200)
It can be enabled by adding

set show-rev-graph = yes

to ~/.tigrc or toggled by pressing 'g' when in the main viewer.

tig.c

diff --git a/tig.c b/tig.c
index 8deab13..69d5059 100644 (file)
--- 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;