From aa17311a941097f6b5b9458debe857fec493412b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sun, 11 Aug 2013 19:04:17 +0200 Subject: [PATCH] Fix indexing for certain list orders References #32. --- autoload/startify.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index dcb38c5..ae91b11 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -277,7 +277,7 @@ function! s:show_sessions(cnt) abort execute 'nnoremap ' index ':source' fnameescape(sfiles[i]) '' endfor - return idx + return idx + 1 endfunction " Function: s:show_bookmarks {{{1 @@ -286,11 +286,12 @@ function! s:show_bookmarks(cnt) abort if exists('g:startify_bookmarks') for fname in g:startify_bookmarks - let cnt += 1 let index = s:get_index_as_string(cnt) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) execute 'nnoremap ' index ':edit' fnameescape(fname) ' call check_user_options()' + + let cnt += 1 endfor endif @@ -414,7 +415,6 @@ function! s:check_user_options() abort let path = expand('%') let session = path . s:sep .'Session.vim' - echom '>>> '. path " autoload session if get(g:, 'startify_session_autoload') && filereadable(session) execute 'source' session