Add function alias

This might become the official version.
This commit is contained in:
Tim Pope 2018-06-29 18:10:38 -04:00
parent b5f7c37d93
commit 80ff014d21
2 changed files with 8 additions and 0 deletions

View File

@ -447,6 +447,10 @@ function! fugitive#Path(url) abort
return ''
endfunction
function! fugitive#Real(url) abort
return fugitive#Path(a:url)
endfunction
let s:buffer_prototype = {}
function! s:buffer(...) abort

View File

@ -147,6 +147,10 @@ function! FugitivePath(...) abort
endif
endfunction
function! FugitiveReal(...) abort
return call('FugitivePath', a:000)
endfunction
augroup fugitive
autocmd!