From 267c7abe7238fad57c5bc3219633f510f3926789 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 26 Apr 2013 10:18:31 +0200 Subject: [PATCH] new option: g:startify_skiplist_server Before this we ignored all Vim server instances. That was a bad decision. Apart from some weird cases, where servernames were set, it totally slipped my attention, that gvim would always set a servername. Sorry, for breaking this plugin for all gvim users! I removed the check and added a configurable list of servernames to be ignored. --- doc/startify.txt | 10 ++++++++++ plugin/startify.vim | 13 ++++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index 837241f..7fcf809 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -118,6 +118,16 @@ Example: let g:startify_skiplist = [ \ ] +============- + + let g:startify_skiplist_server = [] + +Do not create the startify buffer, if this is a Vim server instance with a +name contained in this list. + +Example: let g:startify_skiplist_server = [ 'GVIM' ] + + ============- let g:startify_unlisted_buffer = 1 diff --git a/plugin/startify.vim b/plugin/startify.vim index 7306c22..6b62fcf 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -23,7 +23,13 @@ command! -nargs=0 -bar Startify enew | call s:insane_in_the_membrane() " Function: s:insane_in_the_membrane {{{1 function! s:insane_in_the_membrane() abort - setfiletype startify + if !empty(v:servername) && exists('g:startify_skiplist_server') + for servname in g:startify_skiplist_server + if servname == v:servername + return + endif + endfor + endif setlocal nonumber buftype=nofile if v:version >= 703 setlocal norelativenumber @@ -31,11 +37,8 @@ function! s:insane_in_the_membrane() abort if get(g:, 'startify_unlisted_buffer', 1) setlocal nobuflisted endif - call s:genesis() -endfunction + setfiletype startify -" Function: s:genesis {{{1 -function! s:genesis() abort call append('$', [' startify>', '', ' [e] ']) let cnt = 0 let sep = startify#get_sep()