Sessions: filter foox.vim only if foo.vim exists

We used to filter all sessions ending with "x.vim", because of session extra
files. (See 10. in `:h :mks`.)

To avoid false positives, we now only filter a session "foox.vim", if there is
also an accompanying session "foo.vim".

References #259.
This commit is contained in:
Marco Hinz 2017-01-06 00:32:14 +01:00
parent c26fcfcd17
commit 28cfff5ba9
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -569,8 +569,10 @@ endfunction
" Function: s:show_sessions {{{1
function! s:show_sessions() abort
let sfiles = filter(split(globpath(s:session_dir, '*'), '\n'),
\ 'v:val !~# "x\.vim$" && v:val !~# "__LAST__$"')
let sfiles = split(globpath(s:session_dir, '*'), '\n')
let sfiles = filter(sfiles, 'v:val !~# "__LAST__$"')
let sfiles = filter(sfiles,
\ '!(v:val =~# "x\.vim$" && index(sfiles, v:val[:-6].".vim") >= 0)')
if empty(sfiles)
if exists('s:last_message')
unlet s:last_message