remove check for servername
This caused more trouble than it is worth it.
This commit is contained in:
parent
58807ec7bd
commit
87c0c37817
|
@ -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>)
|
||||
|
|
Loading…
Reference in a new issue