From 1d51636fa11ac24c917490c29cd90feaad8fa845 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 3 Jan 2013 13:11:15 -0500 Subject: [PATCH] Enforce viminfo+=! Hypothesis: people complaining about startup time aren't even trying this. --- plugin/foreplay.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/foreplay.vim b/plugin/foreplay.vim index 9b56fc2..14d767b 100644 --- a/plugin/foreplay.vim +++ b/plugin/foreplay.vim @@ -17,6 +17,10 @@ augroup foreplay_file_type \ endif augroup END +if &viminfo !~# '!' + set viminfo+=! +endif + " }}}1 " Escaping {{{1