From bd89fd440bb21b9091fe38a8332a8180325c28ea Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Mon, 29 Jul 2019 00:48:11 -0400 Subject: [PATCH] Fix error message for rev-parse --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 230799e..84ec203 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -499,7 +499,7 @@ function! fugitive#RevParse(rev, ...) abort if !exec_error && hash =~# '^\x\{40,\}$' return hash endif - throw 'vim-fugitive: rev-parse '.a:rev.': '.hash + throw 'fugitive: rev-parse '.a:rev.': '.hash endfunction function! s:ConfigTimestamps(dir, dict) abort