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:
Konfekt 2015-11-06 17:56:20 +01:00 committed by Marco Hinz
parent 90dcfc9882
commit 295c02f926

View file

@ -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',
\ ])