Use sane defaults instead of an empty skiplist

This commit is contained in:
Marco Hinz 2014-09-09 13:46:44 +02:00
parent fc9a305bd9
commit 00e9af20b3
2 changed files with 27 additions and 20 deletions

View file

@ -19,20 +19,22 @@ let s:relative_path = get(g:, 'startify_relative_path')
let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session'))) \ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
if exists('g:startify_list_order') let s:skiplist = get(g:, 'startify_skiplist', [
let s:lists = g:startify_list_order \ 'COMMIT_EDITMSG',
else \ $VIMRUNTIME .'/doc',
let s:lists = [ \ 'bundle/.*/doc',
\ [' Last recently opened files:'], \ ])
\ 'files',
\ [' Last recently modified files in the current directory:'], let s:lists = get(g:, 'startify_list_order', [
\ 'dir', \ [' Last recently opened files:'],
\ [' My sessions:'], \ 'files',
\ 'sessions', \ [' Last recently modified files in the current directory:'],
\ [' My bookmarks:'], \ 'dir',
\ 'bookmarks', \ [' My sessions:'],
\ ] \ 'sessions',
endif \ [' My bookmarks:'],
\ 'bookmarks',
\ ])
" Function: #get_separator {{{1 " Function: #get_separator {{{1
function! startify#get_separator() abort function! startify#get_separator() abort
@ -341,7 +343,7 @@ function! s:show_dir(cnt) abort
" filter duplicates, bookmarks and entries from the skiplist " filter duplicates, bookmarks and entries from the skiplist
if has_key(entries, abs_path) if has_key(entries, abs_path)
\ || !filereadable(abs_path) \ || !filereadable(abs_path)
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(abs_path)) \ || s:is_in_skiplist(abs_path)
\ || (exists('g:startify_bookmarks') && s:is_bookmark(abs_path)) \ || (exists('g:startify_bookmarks') && s:is_bookmark(abs_path))
continue continue
endif endif
@ -387,7 +389,7 @@ function! s:show_files(cnt) abort
" filter duplicates, bookmarks and entries from the skiplist " filter duplicates, bookmarks and entries from the skiplist
if has_key(entries, abs_path) if has_key(entries, abs_path)
\ || !filereadable(abs_path) \ || !filereadable(abs_path)
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(abs_path)) \ || s:is_in_skiplist(abs_path)
\ || (exists('g:startify_bookmarks') && s:is_bookmark(abs_path)) \ || (exists('g:startify_bookmarks') && s:is_bookmark(abs_path))
continue continue
endif endif
@ -463,7 +465,7 @@ endfunction
" Function: s:is_in_skiplist {{{1 " Function: s:is_in_skiplist {{{1
function! s:is_in_skiplist(arg) abort function! s:is_in_skiplist(arg) abort
for regexp in g:startify_skiplist for regexp in s:skiplist
if (a:arg =~# regexp) if (a:arg =~# regexp)
return 1 return 1
endif endif

View file

@ -249,16 +249,21 @@ At the moment only git, hg, bzr and svn are supported.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
*g:startify_skiplist* *g:startify_skiplist*
> >
let g:startify_skiplist = [] let g:startify_skiplist = [
\ 'COMMIT_EDITMSG',
\ $VIMRUNTIME .'/doc',
\ 'bundle/.*/doc',
\ '.vimgolf',
\ ]
< <
A list of Vim regular expressions that filters recently used files. A list of Vim regular expressions that filters recently used files.
Example: Example:
> >
let g:startify_skiplist = [ let g:startify_skiplist = [
\ '.vimgolf', \ '\.vimgolf',
\ '^/tmp', \ '^/tmp',
\ '/project/.*/documentation' \ '/project/.*/documentation',
\ ] \ ]
< <
------------------------------------------------------------------------------ ------------------------------------------------------------------------------