From 584f1d52f827ed26bba774a1f77080f104af9894 Mon Sep 17 00:00:00 2001 From: Steve Losh Date: Mon, 9 May 2011 21:10:50 -0400 Subject: [PATCH] Fix the default value for close_on_revert. --- plugin/gundo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gundo.vim b/plugin/gundo.vim index 4f3c161..90abc51 100644 --- a/plugin/gundo.vim +++ b/plugin/gundo.vim @@ -67,7 +67,7 @@ if !exists("g:gundo_map_move_newer")"{{{ let g:gundo_map_move_newer = 'k' endif"}}} if !exists("g:gundo_close_on_revert")"{{{ - let g:gundo_close_on_revert = 1 + let g:gundo_close_on_revert = 0 endif"}}} "}}}