remove check for servername

This caused more trouble than it is worth it.
This commit is contained in:
Marco Hinz 2013-04-26 09:43:55 +02:00
parent 58807ec7bd
commit 87c0c37817

View file

@ -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(<f-args>)