Warn when a symlink loop is detected

References https://github.com/mhinz/vim-startify/issues/490
This commit is contained in:
Marco Hinz 2021-05-08 17:32:00 +02:00
parent df0f1dbdc0
commit 81e36c352a
No known key found for this signature in database
GPG key ID: D56EA60F557FD8B6

View file

@ -598,7 +598,12 @@ function! s:filter_oldfiles(path_prefix, path_format, use_env) abort
continue
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
if has_key(entries, absolute_path)
\ || !filereadable(absolute_path)