From 50b57ba400335897c7f488bcb6478d096e65211a Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Tue, 6 Apr 2021 22:51:29 -0400 Subject: [PATCH] Fix double "fugitive:" in error message --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 816aad3..166ca0f 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -3869,7 +3869,7 @@ endfunction function! s:StageApply(info, reverse, extra) abort if a:info.status ==# 'R' - call s:throw('fugitive: patching renamed file not yet supported') + throw 'fugitive: patching renamed file not yet supported' endif let cmd = ['apply', '-p0', '--recount'] + a:extra let info = a:info