From 545578538cb1ba708a41a88c1d827e279ba5ee63 Mon Sep 17 00:00:00 2001 From: Caleb Thompson Date: Tue, 3 Jun 2014 14:47:05 -0500 Subject: [PATCH] Override status.short configuration Git allows the "status.short" configuration to implicitly pass `--short` to git-status. Override that value so that we see "long" status format. --- plugin/fugitive.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 00509e9..65ce394 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -2115,6 +2115,7 @@ function! s:BufReadIndex() abort let cmd = s:repo().git_command( \ '-c', 'status.displayCommentPrefix=true', \ '-c', 'color.status=false', + \ '-c', 'status.short=false', \ 'status') endif try