Support older Vim without 'fileignorecase'
This commit is contained in:
parent
ca727b07f1
commit
b5b2548a87
@ -558,7 +558,7 @@ function! s:buffer_commit() dict abort
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:cpath(path) abort
|
function! s:cpath(path) abort
|
||||||
if &fileignorecase
|
if exists('+fileignorecase') ? &fileignorecase : &wildignorecase
|
||||||
return tolower(a:path)
|
return tolower(a:path)
|
||||||
else
|
else
|
||||||
return a:path
|
return a:path
|
||||||
|
Loading…
Reference in New Issue
Block a user