From 8c09725d03abf4205be1fba030fba4d4c9de1a5f Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 10 Aug 2013 10:41:27 +0200 Subject: [PATCH] User some helper variables --- autoload/startify.vim | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 78cb0d6..dcb38c5 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -411,13 +411,16 @@ endfunction " Function: s:check_user_options {{{1 function! s:check_user_options() abort - let path = expand('%') . s:sep .'Session.vim' + let path = expand('%') + let session = path . s:sep .'Session.vim' + + echom '>>> '. path " autoload session - if get(g:, 'startify_session_autoload') && filereadable(path) - execute 'source' path + if get(g:, 'startify_session_autoload') && filereadable(session) + execute 'source' session " change directory elseif get(g:, 'startify_change_to_dir', 1) - if isdirectory(expand('%')) + if isdirectory(path) lcd % else lcd %:h