new option: g:startify_skiplist

This list is supposed to contain Vim regular expressions to filter the
list of recently used files. An example is given in the doc.

Closes #5.
This commit is contained in:
Marco Hinz 2013-04-25 14:10:26 +02:00
parent b7a2e0aac0
commit 9a743ac0be
3 changed files with 24 additions and 3 deletions

View file

@ -74,6 +74,8 @@ default values.
The directory to save/load sessions to/from.
The default for Windows systems is '$HOME\vimfiles\session'.
============-
@ -103,6 +105,18 @@ The amount of files to list.
A list of files to bookmark. Those files will always be shown at the bottom of
the start screen.
============-
let g:startify_skiplist = []
A list of Vim regular expressions to filter recently used files.
Example: let g:startify_skiplist = [
\ 'COMMIT_EDITMSG',
\ $VIMRUNTIME .'/doc',
\ 'bundle/.*/doc'
\ ]
============-