From a576a6370afbfb1dae5f3a3d0809d84787bfc587 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 2 Aug 2013 15:46:12 +0200 Subject: [PATCH] Test for an empty viminfo file --- autoload/startify.vim | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 8fba2cd..bbb9215 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -217,30 +217,32 @@ function! s:show_files(cnt) abort let num = s:numfiles let entries = {} - for fname in v:oldfiles - let fullpath = resolve(fnamemodify(fname, ':p')) + if !empty(v:oldfiles) + for fname in v:oldfiles + let fullpath = resolve(fnamemodify(fname, ':p')) - " filter duplicates, bookmarks and entries from the skiplist - if has_key(entries, fullpath) - \ || !filereadable(fullpath) - \ || (exists('g:startify_skiplist') && s:is_in_skiplist(fullpath)) - \ || (exists('g:startify_bookmarks') && s:is_bookmark(fullpath)) - continue - endif + " filter duplicates, bookmarks and entries from the skiplist + if has_key(entries, fullpath) + \ || !filereadable(fullpath) + \ || (exists('g:startify_skiplist') && s:is_in_skiplist(fullpath)) + \ || (exists('g:startify_bookmarks') && s:is_bookmark(fullpath)) + continue + endif - let entries[fullpath] = 1 - let index = s:get_index_as_string(cnt) + let entries[fullpath] = 1 + let index = s:get_index_as_string(cnt) - call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) - execute 'nnoremap ' index ':edit' fnameescape(fname) s:cmd + call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) + execute 'nnoremap ' index ':edit' fnameescape(fname) s:cmd - let cnt += 1 - let num -= 1 + let cnt += 1 + let num -= 1 - if !num - break - endif - endfor + if !num + break + endif + endfor + endif return cnt endfunction