Fix FugitiveRemoteUrl()

This commit is contained in:
Tim Pope
2021-08-22 00:20:13 -04:00
parent b5a3775b64
commit c7a93960c7

View File

@@ -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