Don't ignore file extensions of sessions

This commit is contained in:
Marco Hinz 2014-09-02 22:46:48 +02:00
parent 4b9e87cdda
commit eca7c84c41

View file

@ -397,8 +397,8 @@ function! s:show_sessions(cnt) abort
let cnt = a:cnt
for i in range(len(sfiles))
let index = s:get_index_as_string(cnt)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t:r'))
execute 'nnoremap <buffer><silent>' index ':SLoad' fnamemodify(sfiles[i], ':t:r') '<cr>'
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t'))
execute 'nnoremap <buffer><silent>' index ':SLoad' fnamemodify(sfiles[i], ':t') '<cr>'
let cnt += 1
endfor
call append('$', '')