mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-12 05:13:53 -05:00
Eliminate trailing space in :Gpush
This commit is contained in:
@@ -1641,7 +1641,7 @@ function! s:Dispatch(bang, args)
|
||||
try
|
||||
let b:current_compiler = 'git'
|
||||
let &l:errorformat = s:common_efm
|
||||
let &l:makeprg = s:git_command() . ' ' . a:args
|
||||
let &l:makeprg = s:git_command() . (empty(a:args) ? '' : ' ' . a:args)
|
||||
execute cd fnameescape(s:repo().tree())
|
||||
if exists(':Make') == 2
|
||||
noautocmd Make
|
||||
|
||||
Reference in New Issue
Block a user