From afea247ac702e42aee6606cd85d4cead7b1caf3c Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 Apr 2013 12:50:09 +0200 Subject: [PATCH] new option: g:startify_enable_special If you set this variable to 0, [i] and [q] won't be shown. --- doc/startify.txt | 6 ++++++ plugin/startify.vim | 18 +++++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index c4bc119..2130bdf 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -149,6 +149,12 @@ 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 + +Don't show [i] and [q]. + ============================================================================== 4. Commands *startify-commands* diff --git a/plugin/startify.vim b/plugin/startify.vim index bfd9184..20779ad 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -42,13 +42,19 @@ function! s:insane_in_the_membrane() abort endif setfiletype startify - call append('$', ' [i] ') - let cnt = 0 + let special = get(g:, 'startify_enable_special', 1) let sep = startify#get_sep() + let cnt = 0 + + if special + call append('$', ' [i] ') + endif if get(g:, 'startify_show_files', 1) && !empty(v:oldfiles) let numfiles = get(g:, 'startify_show_files_number', 10) - call append('$', '') + if special + call append('$', '') + endif for fname in v:oldfiles let expfname = expand(fname) if !filereadable(expfname) || (exists('g:startify_skiplist') && startify#process_skiplist(expfname)) @@ -87,7 +93,9 @@ function! s:insane_in_the_membrane() abort endfor endif - call append('$', ['', ' [q] ']) + if special + call append('$', ['', ' [q] ']) + endif setlocal nomodifiable nomodified @@ -109,7 +117,7 @@ function! s:insane_in_the_membrane() abort autocmd startify CursorMoved call s:set_cursor() autocmd startify BufWipeout autocmd! startify * - call cursor(4, 5) + call cursor(special ? 4 : 2, 5) endfunction " Function: s:set_cursor {{{1