From a8d959a737d3b024d9149dd85af5763c7dd4d919 Mon Sep 17 00:00:00 2001 From: Marco Hinz <mh.codebro@gmail.com> Date: Thu, 2 May 2013 15:04:35 +0200 Subject: [PATCH] remove now useless option g:startify_unlisted_buffer --- doc/startify.txt | 9 --------- plugin/startify.vim | 3 --- 2 files changed, 12 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index 719e254..5d0ba36 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -177,15 +177,6 @@ Best practices: - (you might want to keep 'j' and 'k' for navigation) -============- - - let g:startify_unlisted_buffer = 1 - -Some bad plugins like minibufexpl break, when there is no listed buffer. -People can set this variable to 0, to work around that. As a consequence the -start screen buffer won't be removed, even after triggering an action from the -start screen. - ============- let g:startify_enable_special = 1 diff --git a/plugin/startify.vim b/plugin/startify.vim index 409f9ed..ec00015 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -46,9 +46,6 @@ function! s:insane_in_the_membrane() abort if (v:version >= 703) setlocal norelativenumber endif - if get(g:, 'startify_unlisted_buffer', 1) - setlocal nobuflisted - endif setfiletype startify let special = get(g:, 'startify_enable_special', 1)