From eca7c84c419efc3a6aa2a0a4d9414f7b03fb1c9c Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 2 Sep 2014 22:46:48 +0200 Subject: [PATCH] Don't ignore file extensions of sessions --- autoload/startify.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index f888ef4..8a0c24f 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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 ' index ':SLoad' fnamemodify(sfiles[i], ':t:r') '' + call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t')) + execute 'nnoremap ' index ':SLoad' fnamemodify(sfiles[i], ':t') '' let cnt += 1 endfor call append('$', '')