mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-13 13:53:51 -05:00
Fix wrong variable name in fugitive#RemoteUrl()
Resolves: https://github.com/tpope/vim-fugitive/pull/1843
This commit is contained in:
@@ -1360,7 +1360,7 @@ function! fugitive#RemoteUrl(...) abort
|
|||||||
break
|
break
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
if index(args, 1) < 0 && index(args, get(v:, 'true', 1)) < 0 && index(args, ':noresolve') < 0
|
if index(flags, 1) < 0 && index(flags, get(v:, 'true', 1)) < 0 && index(flags, ':noresolve') < 0
|
||||||
let url = fugitive#ResolveRemote(url)
|
let url = fugitive#ResolveRemote(url)
|
||||||
endif
|
endif
|
||||||
return url
|
return url
|
||||||
|
|||||||
Reference in New Issue
Block a user