From c7a93960c7ffe1f5862385dfaf50c9cbf8edac94 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sun, 22 Aug 2021 00:20:13 -0400 Subject: [PATCH] Fix FugitiveRemoteUrl() --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index f80a0aa..38d8895 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -1189,7 +1189,7 @@ function! fugitive#RemoteUrl(...) abort endif endfor if index(args, 1) < 0 && index(args, get(v:, 'true', 1)) < 0 && index(args, ':noresolve') < 0 - let url = fugitive#ResolveRemote(url).full + let url = fugitive#ResolveRemote(url) endif return url endfunction