From 888dcfbc0df5a47adfe7ea28269e814e0d15e6b6 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 8 Aug 2013 17:53:40 +0200 Subject: [PATCH] New option: g:startify_session_detection --- README.md | 5 ++++- autoload/startify.vim | 6 ++++++ doc/startify.txt | 8 ++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3925539..6f5e166 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,10 @@ See `:h startify-options` for more information. #### 2) Easy session handling -It eases handling of loading, saving and deleting sessions by always working +When the file Session.vim is found in the current directory, it will be shown at +the top of all lists as entry `[0]`. + +The handling of loading, saving and deleting sessions is eased by always working with one and the same directory. These commands are used for convenience: :SLoad load a session diff --git a/autoload/startify.vim b/autoload/startify.vim index bcb7151..af8956b 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -46,6 +46,12 @@ function! startify#insane_in_the_membrane() abort call append('$', [' [e] ', '']) endif + if get(g:, 'startify_session_detection', 1) && filereadable('Session.vim') + call append('$', [' [0] Session.vim', '']) + execute 'nnoremap 0 :source Session.vim' + let cnt = 1 + endif + for list in get(g:, 'startify_list_order', ['files', 'sessions', 'bookmarks']) let cnt = s:show_{list}(cnt) call append('$', '') diff --git a/doc/startify.txt b/doc/startify.txt index 3b1a842..f64dc57 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -135,6 +135,14 @@ Example: let g:startify_bookmarks = [ '~/.vimrc' ] The number of files to list. +============- + + let g:startify_session_detection = 1 + +When the file Session.vim is found in the current directory, it will be shown at +the top of all lists as entry [0]. + + ============- let g:startify_change_to_dir = 1