From c9c08ff9ef57775dbfe4ef4344f3c203bd4141ab Mon Sep 17 00:00:00 2001 From: yasuda Date: Tue, 7 Mar 2023 11:05:28 +0900 Subject: [PATCH] Fix dropped quote of `entries` --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index a87bb67..eb4b103 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2922,7 +2922,7 @@ function! fugitive#BufReadStatus(...) abort let unpushed_push = s:QueryLogRange(push_ref ==# pull_ref ? '' : push_ref, head) if get(props, 'branch.ab') =~# '^+0 ' - let unpushed_pull = {'error': 0, 'overflow': 0, entries: []} + let unpushed_pull = {'error': 0, 'overflow': 0, 'entries': []} else let unpushed_pull = s:QueryLogRange(pull_ref, head) endif