From 520f27769573582db9b40ae14ae86ac1f6a60c97 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sun, 6 Oct 2019 13:18:35 +0200 Subject: [PATCH] Initialize b:startify.leftmouse Fixes https://github.com/mhinz/vim-startify/issues/394 --- autoload/startify.vim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 8e49e55..6c7be64 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -90,7 +90,12 @@ function! startify#insane_in_the_membrane(on_vimenter) abort endif 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 call append('$', [s:padding_left .'[e] ', ''])