From 50971a4862a137349efdc23bdb0e4983225165d2 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 20 Sep 2023 13:34:02 +0200 Subject: [PATCH] Nvim: adjust VimEnter check due to upstream change Due to a recent change in Nvim [1], our VimEnter check wasn't firing anymore and thus Startify wouldn't run at startup. The line2byte() "trick" was replaced by less abusing VimL. [1]: https://github.com/neovim/neovim/commit/b051b131f5ce99ffe1b1bc22a2032ebc886e4e35 Fixes https://github.com/mhinz/vim-startify/issues/549 --- plugin/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/startify.vim b/plugin/startify.vim index 96bbc5a..4c6109e 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -34,7 +34,7 @@ function! s:update_oldfiles(file) endfunction function! s:on_vimenter() - if !argc() && line2byte('$') == -1 + if !argc() && line('$') == 1 && getline('.') == '' if get(g:, 'startify_session_autoload') && filereadable('Session.vim') source Session.vim elseif !get(g:, 'startify_disable_at_vimenter')