Skiplist: filter a few files by default
This commit is contained in:
parent
593388d3db
commit
04ad724e80
|
@ -1113,14 +1113,14 @@ let s:relative_path = get(g:, 'startify_relative_path') ? ':~:.' : ':p:~'
|
||||||
let s:tf = exists('g:startify_transformations')
|
let s:tf = exists('g:startify_transformations')
|
||||||
let s:session_dir = startify#get_session_path()
|
let s:session_dir = startify#get_session_path()
|
||||||
|
|
||||||
let s:skiplist = get(g:, 'startify_skiplist', [
|
let s:skiplist = extend(get(g:, 'startify_skiplist', []), [
|
||||||
\ 'runtime/doc/.*\.txt',
|
\ 'runtime/doc/.*\.txt$',
|
||||||
\ 'bundle/.*/doc/.*\.txt',
|
\ 'bundle/.*/doc/.*\.txt$',
|
||||||
\ 'plugged/.*/doc/.*\.txt',
|
\ 'plugged/.*/doc/.*\.txt$',
|
||||||
\ '/.git/',
|
\ '/.git/',
|
||||||
\ 'fugitiveblame$',
|
\ 'fugitiveblame$',
|
||||||
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc/.*\.txt',
|
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc/.*\.txt$',
|
||||||
\ ])
|
\ ], 'keep')
|
||||||
|
|
||||||
let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3))
|
let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3))
|
||||||
let s:fixed_column = len(s:padding_left) + 2
|
let s:fixed_column = len(s:padding_left) + 2
|
||||||
|
|
|
@ -381,20 +381,27 @@ 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',
|
|
||||||
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc',
|
|
||||||
\ 'bundle/.*/doc',
|
|
||||||
\ ]
|
|
||||||
<
|
<
|
||||||
A list of Vim regular expressions that is used to filter 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.
|
See |pattern.txt| for what patterns can be used.
|
||||||
|
|
||||||
|
The following patterns are filtered by default:
|
||||||
|
|
||||||
|
'runtime/doc/.*\.txt$'
|
||||||
|
'bundle/.*/doc/.*\.txt$'
|
||||||
|
'plugged/.*/doc/.*\.txt$'
|
||||||
|
'/.git/'
|
||||||
|
'fugitiveblame$'
|
||||||
|
escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc/.*\.txt$'
|
||||||
|
|
||||||
NOTE: Due to the nature of patterns, you can't just use "~/mysecret" but have
|
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
|
to use "$HOME .'/mysecret.txt'". The former would do something entirely
|
||||||
different: |/\~|. When using backslashes as path separators, escape them.
|
different: |/\~|.
|
||||||
Otherwise using "C:\this\vim\path\is\problematic" would not match what you
|
|
||||||
expect, since |/\v| is a pattern, too.
|
NOTE: When using backslashes as path separators, escape them. Otherwise using
|
||||||
|
"C:\this\vim\path\is\problematic" would not match what you would expect, since
|
||||||
|
|/\v| is a pattern, too.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue