From be611cd545989ca4902453077faebd3c34520176 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 2 Jun 2015 23:18:57 +0200 Subject: [PATCH] Call s:check_user_options() for all entries References #165. --- autoload/startify.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 8fc8a90..16aeded 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -355,6 +355,7 @@ function! startify#open_buffers(...) abort if exists('a:1') " used in mappings let entry = s:entries[a:1] execute entry.cmd entry.path + call s:check_user_options() return endif @@ -362,6 +363,7 @@ function! startify#open_buffers(...) abort if empty(marked) " open current entry let entry = s:entries[line('.')] execute entry.cmd entry.path + call s:check_user_options() return endif