aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-10 22:27:04 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-10 22:27:04 +1200
commit751b3ab33e124ecbcef5ced7305a881431eb15d7 (patch)
tree052d14094a452d49b8293fdfa0f7d3772b9be00c /vim
parentAdd missing dot to mutt filetype.vim path (diff)
downloaddotfiles-751b3ab33e124ecbcef5ced7305a881431eb15d7.tar.gz
dotfiles-751b3ab33e124ecbcef5ced7305a881431eb15d7.zip
Remove session_lazy.vim
I think this is the wrong approach, and maybe even a slight security risk.
Diffstat (limited to 'vim')
-rw-r--r--vim/autoload/session_lazy.vim25
-rw-r--r--vim/plugin/session_lazy.vim23
2 files changed, 0 insertions, 48 deletions
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
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 <tom@sanctum.geek.nz>
-" 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