From 61cfce000c0cb0f3f80b839b11b5a18d00add340 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 2 Jun 2015 22:26:59 +0200 Subject: [PATCH] Don't overwrite the last regular entry with [q] --- autoload/startify.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 546e562..f5e19e7 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -117,8 +117,11 @@ function! startify#insane_in_the_membrane() abort if s:show_special call append('$', ['', ' [q] ']) + call s:register(line('$'), 'q', 'special', 'call s:close()', '') + else + " Don't overwrite the last regular entry, thus +1 + call s:register(line('$')+1, 'q', 'special', 'call s:close()', '') endif - call s:register(line('$'), 'q', 'special', 'call s:close()', '') " compute first line offset let s:firstline = 2