Convert all FugitivePrepare() int arguments to buffer names
This commit is contained in:
parent
4f51d99f44
commit
7079d0c7e2
@ -324,6 +324,11 @@ function! s:PreparePathArgs(cmd, dir, literal) abort
|
|||||||
call insert(a:cmd, '--literal-pathspecs')
|
call insert(a:cmd, '--literal-pathspecs')
|
||||||
endif
|
endif
|
||||||
let split = index(a:cmd, '--')
|
let split = index(a:cmd, '--')
|
||||||
|
for i in range(split < 0 ? len(a:cmd) : split)
|
||||||
|
if type(a:cmd[i]) == type(0)
|
||||||
|
let a:cmd[i] = fugitive#Path(bufname(a:cmd[i]), './', a:dir)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
if split < 0
|
if split < 0
|
||||||
return a:cmd
|
return a:cmd
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user