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:
ZeroKnight 2014-04-24 01:10:31 -04:00 committed by Marco Hinz
parent 376b2178f4
commit 2872ab750b

View file

@ -271,7 +271,7 @@ function! s:show_dir(cnt) abort
let cnt = a:cnt
let num = s:numfiles
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')
if !empty(files)