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.
This commit is contained in:
Caleb Thompson 2014-06-03 14:47:05 -05:00 committed by Tim Pope
parent 6f5fd2add0
commit 545578538c

View File

@ -2115,6 +2115,7 @@ function! s:BufReadIndex() abort
let cmd = s:repo().git_command( let cmd = s:repo().git_command(
\ '-c', 'status.displayCommentPrefix=true', \ '-c', 'status.displayCommentPrefix=true',
\ '-c', 'color.status=false', \ '-c', 'color.status=false',
\ '-c', 'status.short=false',
\ 'status') \ 'status')
endif endif
try try