Initialize b:startify.leftmouse
Fixes https://github.com/mhinz/vim-startify/issues/394
This commit is contained in:
parent
af03e075a3
commit
520f277695
|
@ -90,7 +90,12 @@ function! startify#insane_in_the_membrane(on_vimenter) abort
|
||||||
endif
|
endif
|
||||||
call append('$', g:startify_header)
|
call append('$', g:startify_header)
|
||||||
|
|
||||||
let b:startify = { 'tick': 0, 'entries': {}, 'indices': [] }
|
let b:startify = {
|
||||||
|
\ 'entries': {},
|
||||||
|
\ 'indices': [],
|
||||||
|
\ 'leftmouse': 0,
|
||||||
|
\ 'tick': 0,
|
||||||
|
\ }
|
||||||
|
|
||||||
if s:show_special
|
if s:show_special
|
||||||
call append('$', [s:padding_left .'[e] <empty buffer>', ''])
|
call append('$', [s:padding_left .'[e] <empty buffer>', ''])
|
||||||
|
|
Loading…
Reference in a new issue