From 04be163a3ec3955639740650a5b1a4df42ea546d Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Fri, 15 Mar 2013 10:20:43 +0100 Subject: [PATCH] Fix bug for GitGutterEnable. --- plugin/gitgutter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gitgutter.vim b/plugin/gitgutter.vim index c333762..a145c76 100644 --- a/plugin/gitgutter.vim +++ b/plugin/gitgutter.vim @@ -411,7 +411,7 @@ command GitGutterDisable call GitGutterDisable() function! GitGutterEnable() let g:gitgutter_enabled = 1 - call GitGutter() + call GitGutter(s:current_file()) endfunction command GitGutterEnable call GitGutterEnable()