Fix firstline offset under new s:lists format

This commit is contained in:
Marco Hinz 2018-03-16 16:47:40 +01:00
parent 15ee162f99
commit bdb389ef61
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -191,8 +191,8 @@ function! startify#insane_in_the_membrane() abort
let b:startify.firstline = 2
let b:startify.firstline += len(g:startify_header)
" no special, no local Session.vim, but a section header
if !s:show_special && !exists('l:show_session') && type(s:lists[0]) == type([])
let b:startify.firstline += len(s:lists[0]) + 1
if !s:show_special && !exists('l:show_session') && has_key(s:lists[0], 'header')
let b:startify.firstline += len(s:lists[0].header) + 1
endif
let b:startify.lastline = line('$')