g:startify_use_env: compare against absolute path

References #284.
This commit is contained in:
Marco Hinz 2017-05-29 23:13:35 +02:00
parent c60ebcc313
commit 367aec0966
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -514,7 +514,7 @@ function! s:filter_oldfiles(path_prefix, path_format, use_env) abort
call s:init_env()
for i in range(len(oldfiles))
for [k,v] in s:env
let p = oldfiles[i][1]
let p = oldfiles[i][0]
if !stridx(tolower(p), tolower(v))
let oldfiles[i][1] = printf('$%s%s', k, p[len(v):])
break