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/plugin/session_lazy.vim | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 vim/plugin/session_lazy.vim (limited to 'vim/plugin') diff --git a/vim/plugin/session_lazy.vim b/vim/plugin/session_lazy.vim deleted file mode 100644 index d40cb670..00000000 --- a/vim/plugin/session_lazy.vim +++ /dev/null @@ -1,23 +0,0 @@ -" -" session_lazy.vim: Automatically resume a session from the current directory, -" if no other filename arguments were passed to Vim. -" -" Author: Tom Ryder -" License: Same as Vim itself -" -if exists('g:loaded_session_lazy') || &compatible - finish -endif -if !has('autocmd') || v:version < 700 - finish -endif -let g:loaded_session_lazy = 1 - -" Set up -augroup session - autocmd! - autocmd VimEnter * - \ call session_lazy#Thaw() - autocmd VimLeavePre * - \ call session_lazy#Freeze() -augroup END -- cgit v1.2.3