Resolve symlinks in MRU filter
For example, OpenSUSE uses a `.../vim/current` symlink for `$VIMRUNTIME`. The skiplist now resolves these to filter them too. Closes #184.
This commit is contained in:
parent
90dcfc9882
commit
295c02f926
|
@ -19,7 +19,7 @@ let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
|
|||
|
||||
let s:skiplist = get(g:, 'startify_skiplist', [
|
||||
\ 'COMMIT_EDITMSG',
|
||||
\ escape(fnamemodify($VIMRUNTIME, ':p'), '\') .'doc',
|
||||
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc',
|
||||
\ 'bundle/.*/doc',
|
||||
\ ])
|
||||
|
||||
|
|
Loading…
Reference in a new issue