From 61698761e50c2d79c02b3e51af3559ff88a45801 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Mon, 12 Oct 2009 22:11:34 -0400 Subject: [PATCH] Fix a nonstandard fugitive error message --- plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 97855a8..3df652e 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -859,7 +859,7 @@ function! s:BufReadObject() let b:fugitive_type = s:repo().git_chomp('cat-file','-t',hash) endif if b:fugitive_type !~# '^\%(tag\|commit\|tree\|blob\)$' - return "echoerr 'Unrecognized git type'" + return "echoerr 'fugitive: unrecognized git type'" endif let firstline = getline('.') if !exists('b:fugitive_display_format') && b:fugitive_type != 'blob'