From 11ce319e4f5162e3104538c342b6efe953b28cf8 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sun, 25 Mar 2007 11:14:15 +0200 Subject: [PATCH] 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. --- tig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.32.0.93.g670b81a890