mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-09 20:13:46 -05:00
Fix :Gstatus log with unpushed remote
This commit is contained in:
@@ -1350,6 +1350,9 @@ endfunction
|
|||||||
|
|
||||||
function! s:QueryLog(refspec) abort
|
function! s:QueryLog(refspec) abort
|
||||||
let lines = split(system(FugitivePrepare('log', '-n', '256', '--format=%h%x09%s', a:refspec, '--')), "\n")
|
let lines = split(system(FugitivePrepare('log', '-n', '256', '--format=%h%x09%s', a:refspec, '--')), "\n")
|
||||||
|
if v:shell_error
|
||||||
|
return []
|
||||||
|
endif
|
||||||
call map(lines, 'split(v:val, "\t")')
|
call map(lines, 'split(v:val, "\t")')
|
||||||
call map(lines, '{"type": "Log", "commit": v:val[0], "subject": v:val[-1]}')
|
call map(lines, '{"type": "Log", "commit": v:val[0], "subject": v:val[-1]}')
|
||||||
return lines
|
return lines
|
||||||
|
|||||||
Reference in New Issue
Block a user