From ae10ca5152a6ed6f82ecf48b52f13379cc7b492f Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 19 Sep 2019 15:40:20 +0200 Subject: [PATCH] Scroll window to top as much as possible This way you'll see as much as possible from a potential header. The reverse (making the current line the top line in the window) could be done via.. autocmd User Startified normal! zt ..or centerered via.. autocmd User Startified normal! zz Fixes https://github.com/mhinz/vim-startify/issues/391 --- autoload/startify.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 90b58cf..e58d6db 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -149,6 +149,7 @@ function! startify#insane_in_the_membrane(on_vimenter) abort autocmd startify CursorMoved call s:set_cursor() silent! %foldopen! + normal! zb set filetype=startify if exists('##DirChanged')