From 2872ab750b9011450ed797fe6964aba428e3dcee Mon Sep 17 00:00:00 2001 From: ZeroKnight Date: Thu, 24 Apr 2014 01:10:31 -0400 Subject: [PATCH] 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. --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 0aecf92..239d6f0 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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)