From 25af84baa0d78d36d8a031a20c977f9cfc957680 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 24 Sep 2013 18:17:26 +0200 Subject: [PATCH] New option: g:startify_disable_at_vimenter --- doc/startify.txt | 9 +++++++++ plugin/startify.vim | 12 +++++++----- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index 2056b39..e53a62b 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -95,6 +95,7 @@ default values. |g:startify_enable_special| |g:startify_session_savevars| |g:startify_session_savecmds| + |g:startify_disable_at_vimenter| ============- *g:startify_session_dir* @@ -346,6 +347,14 @@ A hardcoded example: Same as the custom header, but shown at the bottom of the startify buffer. +============- *g:startify_disable_at_vimenter* + + let g:startify_disable_at_vimenter = 0 + +Don't run Startify at Vim startup. You can still call it anytime via +:Startify. + + ============================================================================== 4. Commands *startify-commands* diff --git a/plugin/startify.vim b/plugin/startify.vim index af947fc..5fb99a3 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -11,11 +11,13 @@ endif let g:loaded_startify = 1 augroup startify - autocmd VimEnter * - \ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gm]\=vimx\=\%[\.exe]$') | - \ call startify#insane_in_the_membrane() | - \ endif | - \ autocmd! startify VimEnter + if !get(g:, 'startify_disable_at_vimenter') + autocmd VimEnter * + \ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gm]\=vimx\=\%[\.exe]$') | + \ call startify#insane_in_the_membrane() | + \ endif | + \ autocmd! startify VimEnter + endif augroup END command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save()