Warn when a symlink loop is detected
References https://github.com/mhinz/vim-startify/issues/490
This commit is contained in:
parent
df0f1dbdc0
commit
81e36c352a
|
@ -598,7 +598,12 @@ function! s:filter_oldfiles(path_prefix, path_format, use_env) abort
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let absolute_path = fnamemodify(resolve(fname), ":p")
|
try
|
||||||
|
let absolute_path = fnamemodify(resolve(fname), ":p")
|
||||||
|
catch /E655/ " Too many symbolic links (cycle?)
|
||||||
|
call s:warn('Symlink loop detected! Skipping: '. fname)
|
||||||
|
continue
|
||||||
|
endtry
|
||||||
" filter duplicates, bookmarks and entries from the skiplist
|
" filter duplicates, bookmarks and entries from the skiplist
|
||||||
if has_key(entries, absolute_path)
|
if has_key(entries, absolute_path)
|
||||||
\ || !filereadable(absolute_path)
|
\ || !filereadable(absolute_path)
|
||||||
|
|
Loading…
Reference in a new issue