Test for an empty viminfo file
This commit is contained in:
parent
068c5ef102
commit
a576a6370a
|
@ -217,30 +217,32 @@ function! s:show_files(cnt) abort
|
||||||
let num = s:numfiles
|
let num = s:numfiles
|
||||||
let entries = {}
|
let entries = {}
|
||||||
|
|
||||||
for fname in v:oldfiles
|
if !empty(v:oldfiles)
|
||||||
let fullpath = resolve(fnamemodify(fname, ':p'))
|
for fname in v:oldfiles
|
||||||
|
let fullpath = resolve(fnamemodify(fname, ':p'))
|
||||||
|
|
||||||
" filter duplicates, bookmarks and entries from the skiplist
|
" filter duplicates, bookmarks and entries from the skiplist
|
||||||
if has_key(entries, fullpath)
|
if has_key(entries, fullpath)
|
||||||
\ || !filereadable(fullpath)
|
\ || !filereadable(fullpath)
|
||||||
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(fullpath))
|
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(fullpath))
|
||||||
\ || (exists('g:startify_bookmarks') && s:is_bookmark(fullpath))
|
\ || (exists('g:startify_bookmarks') && s:is_bookmark(fullpath))
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let entries[fullpath] = 1
|
let entries[fullpath] = 1
|
||||||
let index = s:get_index_as_string(cnt)
|
let index = s:get_index_as_string(cnt)
|
||||||
|
|
||||||
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
||||||
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:cmd
|
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:cmd
|
||||||
|
|
||||||
let cnt += 1
|
let cnt += 1
|
||||||
let num -= 1
|
let num -= 1
|
||||||
|
|
||||||
if !num
|
if !num
|
||||||
break
|
break
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
|
endif
|
||||||
|
|
||||||
return cnt
|
return cnt
|
||||||
endfunction
|
endfunction
|
||||||
|
|
Loading…
Reference in a new issue