From 695121f065c10670775a46b3137516027653f889 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 6 Jul 2015 18:19:43 +0200 Subject: [PATCH] Change skiplist default + improve docs Thanks for the feedback, @Osse. --- autoload/startify.vim | 16 +++++++++++----- doc/startify.txt | 28 +++++++++++----------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 4f5c9da..ed01f92 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -19,7 +19,7 @@ let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', let s:skiplist = get(g:, 'startify_skiplist', [ \ 'COMMIT_EDITMSG', - \ fnamemodify($VIMRUNTIME, ':p') .'/doc', + \ escape(fnamemodify($VIMRUNTIME, ':p'), '\') .'doc', \ 'bundle/.*/doc', \ ]) @@ -89,7 +89,7 @@ function! startify#insane_in_the_membrane() abort if empty(v:oldfiles) echohl WarningMsg echomsg "startify: Can't read viminfo file. Read :help startify-faq-02" - echohl None + echohl NONE endif let b:startify_section_header_lines = [] @@ -537,9 +537,15 @@ endfunction " Function: s:is_in_skiplist {{{1 function! s:is_in_skiplist(arg) abort for regexp in s:skiplist - if (a:arg =~# regexp) - return 1 - endif + try + if a:arg =~# regexp + return 1 + endif + catch + echohl WarningMsg + echomsg 'startify: Pattern '. string(regexp) .' threw an exception. Read :help g:startify_skiplist' + echohl NONE + endtry endfor endfunction diff --git a/doc/startify.txt b/doc/startify.txt index 113bbb3..bc197f1 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -247,17 +247,18 @@ At the moment only git, hg, bzr and svn are supported. > let g:startify_skiplist = [ \ 'COMMIT_EDITMSG', - \ fnamemodify($VIMRUNTIME, ':p') .'/doc', + \ escape(fnamemodify($VIMRUNTIME, ':p'), '\') .'doc', \ 'bundle/.*/doc', - \ '.vimgolf', \ ] < 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: |/\~| +NOTE: Due to the nature of patterns, you can't just use "~/mysecret" but have +to use "$HOME .'/mysecret.txt'". The former would do something entirely +different: |/\~|. When using backslashes as path separators, escape them. +Otherwise using "C:\this\vim\path\is\problematic" would not match what you +expect, since |/\v| is a pattern, too. Example: > @@ -265,7 +266,7 @@ Example: \ '\.vimgolf', \ '^/tmp', \ '/project/.*/documentation', - \ $HOME . '/mysecret.txt', + \ escape(fnamemodify($HOME, ':p'), '\') .'mysecret.txt', \ ] < ------------------------------------------------------------------------------ @@ -629,15 +630,8 @@ Some people swear it works for them with these settings: *startify-faq-04* How to disable common but unimportant files?~ -Use the skiplist. Personally I use: -> - let g:startify_skiplist = [ - \ 'COMMIT_EDITMSG', - \ fnamemodify($VIMRUNTIME, ':p') .'/doc', - \ 'bundle/.*/doc', - \ '\.DS_Store' - \ ] -< +Use |g:startify_skiplist|. + ------------------------------------------------------------------------------ *startify-faq-05* CtrlP or NERDTree open a split in Startify!~ @@ -714,9 +708,9 @@ This is my configuration.. let g:startify_skiplist = [ \ 'COMMIT_EDITMSG', - \ fnamemodify($VIMRUNTIME, ':p') .'/doc', \ 'bundle/.*/doc', - \ '\.vimgolf', + \ '/data/repo/neovim/runtime/doc', + \ '/Users/mhi/local/vim/share/vim/vim74/doc', \ ] let g:startify_bookmarks = [