From e3988d2446f5b5b912d093b67cd1c1c1cab3b1ab Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 15 Apr 2015 10:27:33 +0200 Subject: [PATCH] Doc: better explanation of skiplist option References #154. --- doc/startify.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/startify.txt b/doc/startify.txt index b954e0c..38e68e4 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -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', \ ] < ------------------------------------------------------------------------------