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
This commit is contained in:
Marco Hinz 2019-09-19 15:40:20 +02:00
parent 13b67af7aa
commit ae10ca5152
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -149,6 +149,7 @@ function! startify#insane_in_the_membrane(on_vimenter) abort
autocmd startify CursorMoved <buffer> call s:set_cursor() autocmd startify CursorMoved <buffer> call s:set_cursor()
silent! %foldopen! silent! %foldopen!
normal! zb
set filetype=startify set filetype=startify
if exists('##DirChanged') if exists('##DirChanged')