From 87c0c378175687a7dc8bd864c9ce6e655409332c Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 26 Apr 2013 09:43:55 +0200 Subject: [PATCH] remove check for servername This caused more trouble than it is worth it. --- plugin/startify.vim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugin/startify.vim b/plugin/startify.vim index f453fe7..178a817 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -14,10 +14,7 @@ let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir', augroup startify autocmd! - autocmd VimEnter * - \ if !argc() && (line2byte('$') == -1) && empty(v:servername) | - \ call s:start() | - \ endif + autocmd VimEnter * if !argc() && (line2byte('$') == -1) | call s:start() | endif augroup END command! -nargs=? -bar -complete=customlist,startify#get_session_names SSave call startify#save_session()