From 751b3ab33e124ecbcef5ced7305a881431eb15d7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 10 Jul 2018 22:27:04 +1200 Subject: Remove session_lazy.vim I think this is the wrong approach, and maybe even a slight security risk. --- vim/autoload/session_lazy.vim | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 vim/autoload/session_lazy.vim (limited to 'vim/autoload') diff --git a/vim/autoload/session_lazy.vim b/vim/autoload/session_lazy.vim deleted file mode 100644 index 59caae37..00000000 --- a/vim/autoload/session_lazy.vim +++ /dev/null @@ -1,25 +0,0 @@ -" Choose the filename we'll use for these sessions -let g:session_lazy#active = 0 -if !exists('g:session_lazy#filename') - let g:session_lazy#filename = 'Session.vim' -endif - -" If we started with no arguments, there's no active session, and there's a -" session file sitting right there, read it -function! session_lazy#Thaw() - if !argc() - \ && v:this_session ==# '' - \ && filereadable(g:session_lazy#filename) - let g:session_lazy#active = 1 - execute 'source ' . g:session_lazy#filename - endif -endfunction - -" Before we quit, if we opened this with a session automatically, save it back -" again, into the same file -function! session_lazy#Freeze() - if g:session_lazy#active - \ && g:session_lazy#filename ==# fnamemodify(v:this_session, ':t') - execute 'mksession! ' . g:session_lazy#filename - endif -endfunction -- cgit v1.2.3