Add function alias
This might become the official version.
This commit is contained in:
parent
b5f7c37d93
commit
80ff014d21
@ -447,6 +447,10 @@ function! fugitive#Path(url) abort
|
|||||||
return ''
|
return ''
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! fugitive#Real(url) abort
|
||||||
|
return fugitive#Path(a:url)
|
||||||
|
endfunction
|
||||||
|
|
||||||
let s:buffer_prototype = {}
|
let s:buffer_prototype = {}
|
||||||
|
|
||||||
function! s:buffer(...) abort
|
function! s:buffer(...) abort
|
||||||
|
@ -147,6 +147,10 @@ function! FugitivePath(...) abort
|
|||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! FugitiveReal(...) abort
|
||||||
|
return call('FugitivePath', a:000)
|
||||||
|
endfunction
|
||||||
|
|
||||||
augroup fugitive
|
augroup fugitive
|
||||||
autocmd!
|
autocmd!
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user