From 7f76635fce4ae73f6446a3ed282398eaff8a85a2 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 14 Aug 2015 11:59:24 +0200 Subject: [PATCH] session_write(): error msg instead of exception References #174. --- autoload/startify.vim | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index ed01f92..7e62f0e 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -235,27 +235,31 @@ endfunction " Function: #session_write {{{1 function! startify#session_write(spath) - let ssop = &sessionoptions - try - " if this function is called while being in the Startify buffer - " (by loading another session or running :SSave/:SLoad directly) - " switch back to the previous buffer before saving the session - if &filetype == 'startify' - let callingbuffer = bufnr('#') - if callingbuffer > 0 - execute 'buffer' callingbuffer - endif + " if this function is called while being in the Startify buffer + " (by loading another session or running :SSave/:SLoad directly) + " switch back to the previous buffer before saving the session + if &filetype == 'startify' + let callingbuffer = bufnr('#') + if callingbuffer > 0 + execute 'buffer' callingbuffer endif - " prevent saving already deleted buffers that were in the arglist - for arg in argv() - if !buflisted(arg) - execute 'argdelete' fnameescape(arg) - endif - endfor - set sessionoptions-=options + endif + " prevent saving already deleted buffers that were in the arglist + for arg in argv() + if !buflisted(arg) + execute 'silent! argdelete' fnameescape(arg) + endif + endfor + + let ssop = &sessionoptions + set sessionoptions-=options + try execute 'mksession!' a:spath catch - execute 'echoerr' string(v:exception) + echohl ErrorMsg + echomsg v:exception + echohl NONE + return finally let &sessionoptions = ssop endtry