From 0502b8ae47419a029f44e9e82fa25553632f4469 Mon Sep 17 00:00:00 2001 From: Steve Losh Date: Wed, 20 Oct 2010 21:34:18 -0400 Subject: [PATCH] Set the correct foldmethod for the preview pane. --- plugin/gundo.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/gundo.vim b/plugin/gundo.vim index ed08ea9..0b913e9 100644 --- a/plugin/gundo.vim +++ b/plugin/gundo.vim @@ -505,6 +505,7 @@ function! s:GundoSettingsPreview()"{{{ setlocal norelativenumber setlocal nowrap setlocal foldlevel=20 + setlocal foldmethod=diff call s:GundoMapPreview() endfunction"}}}