Accept buffer number to FugitiveRoute()

This commit is contained in:
Tim Pope
2018-08-20 19:12:17 -04:00
parent 44e5df8433
commit 4d3835f637
2 changed files with 5 additions and 2 deletions

View File

@@ -522,7 +522,10 @@ function! s:Relative(...) abort
endfunction
function! fugitive#Route(object, ...) abort
if a:object =~# '^[~$]'
if type(a:object) == type(0)
let name = bufname(a:object)
return s:PlatformSlash(name =~# '^$\|^/\|^\a\+:' ? name : getcwd() . '/' . name)
elseif a:object =~# '^[~$]'
let prefix = matchstr(a:object, '^[~$]\i*')
let owner = expand(prefix)
return s:PlatformSlash((len(owner) ? owner : prefix) . strpart(a:object, len(prefix)))