From 5f387d4783c1cbf147ef3e23334a325bbd83ae13 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Tue, 14 Sep 2021 00:06:58 -0400 Subject: [PATCH] Fix FugitiveRemoteUrl('origin', FugitiveConfig()) --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 7bf6d60..3d431cf 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -1273,7 +1273,7 @@ function! fugitive#RemoteUrl(...) abort if type(a:1) ==# type({}) && has_key(a:1, 'remote_name') && (type(get(args, 0, 0)) !=# type('') || args[0] =~# '^:') call insert(args, a:1.remote_name) endif - elseif a:0 > 1 && a:2 !~# '^:' + elseif a:0 > 1 && type(a:2) ==# type({}) || (type(a:2) ==# type('') && a:2 !~# '^:') let config = fugitive#Config(a:2) let args = [a:1] + a:000[2:-1] else