Fix "last modified" entries not showing with nossl
On Windows with 'noshellslash', the 'dir' section would never show up due to the unescaped backslashes in `cwd`. escape() backslashes (if they exist) so that match() will pass properly.
This commit is contained in:
parent
376b2178f4
commit
2872ab750b
|
@ -271,7 +271,7 @@ function! s:show_dir(cnt) abort
|
||||||
let cnt = a:cnt
|
let cnt = a:cnt
|
||||||
let num = s:numfiles
|
let num = s:numfiles
|
||||||
let entries = {}
|
let entries = {}
|
||||||
let cwd = getcwd()
|
let cwd = escape(getcwd(), '\')
|
||||||
let files = filter(map(copy(v:oldfiles), 'resolve(fnamemodify(v:val, ":p"))'), 'match(v:val, cwd) == 0')
|
let files = filter(map(copy(v:oldfiles), 'resolve(fnamemodify(v:val, ":p"))'), 'match(v:val, cwd) == 0')
|
||||||
|
|
||||||
if !empty(files)
|
if !empty(files)
|
||||||
|
|
Loading…
Reference in a new issue