Doc: better explanation of skiplist option

References #154.
This commit is contained in:
Marco Hinz 2015-04-15 10:27:33 +02:00
parent 36ff6db44a
commit e3988d2446

View file

@ -251,7 +251,12 @@ At the moment only git, hg, bzr and svn are supported.
\ '.vimgolf',
\ ]
<
A list of Vim regular expressions that filters recently used files.
A list of Vim regular expressions that is used to filter recently used files.
See |pattern.txt| for what patterns can be used.
NOTE: Due to the nature of patterns, you can't just use something like
"'~/mysecret'" but have to use "$HOME . '/mysecret.txt". The former would do
something entirely different: |/\~|
Example:
>
@ -259,6 +264,7 @@ Example:
\ '\.vimgolf',
\ '^/tmp',
\ '/project/.*/documentation',
\ $HOME . '/mysecret.txt',
\ ]
<
------------------------------------------------------------------------------