From 8954e92fa766901ddb3af50d42b94254d59eaa1a Mon Sep 17 00:00:00 2001 From: Alex George Date: Sun, 20 Apr 2014 12:19:53 -0400 Subject: [PATCH] Fix skiplist matching on Windows See issue #52 In order to enable platform-agnostic patterns in `g:startify_skiplist`, as long as `shellslash` is set in a user's `.vimrc` before loading the plugin, patterns in `g:startify_skiplist` will work even if they use forward slashes. --- autoload/startify.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index ba2c445..e4c8673 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -280,7 +280,7 @@ function! s:show_dir(cnt) abort endif for fname in files - let fullpath = resolve(fnamemodify(fname, ':p')) + let fullpath = resolve(fnamemodify(glob(fname), ':p')) " filter duplicates, bookmarks and entries from the skiplist if has_key(entries, fullpath) @@ -326,7 +326,7 @@ function! s:show_files(cnt) abort let entries = {} for fname in v:oldfiles - let fullpath = resolve(fnamemodify(fname, ':p')) + let fullpath = resolve(fnamemodify(glob(fname), ':p')) " filter duplicates, bookmarks and entries from the skiplist if has_key(entries, fullpath)