From eb6e522245a8388b2322e1302a41deb448c33d02 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 20 Sep 2013 02:35:19 +0200 Subject: [PATCH] Fix cursor handling The cursor wouldn't wrap around to the top entry when you hit 'j' on the last one. --- autoload/startify.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 8dfc786..f28a885 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -83,6 +83,7 @@ function! startify#insane_in_the_membrane() abort endif let s:lastline = line('$') + call append('$', '') if exists('g:startify_custom_footer') call append('$', g:startify_custom_footer)