From 6ebcc05312a5d94599e1463fbb1eccf3b78492ec Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 22 Oct 2009 22:08:57 -0400 Subject: [PATCH] Remove hard-coded git executable reference --- plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index ffef7a4..a4ddc10 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -1030,7 +1030,7 @@ function! s:BufReadIndex() let dir = getcwd() try execute cd.' `=s:repo().tree()`' - call s:ReplaceCmd('git status') + call s:ReplaceCmd(s:repo().git_command('status')) finally execute cd.' `=dir`' endtry