Batchmode: fix unknown function issue

Fixes https://github.com/mhinz/vim-startify/issues/398
This commit is contained in:
Marco Hinz 2019-11-06 11:27:12 +01:00
parent bba214f6b3
commit 2ea9085789
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -401,7 +401,7 @@ function! startify#open_buffers(...) abort
if exists('a:1') " used in mappings
let entry = b:startify.entries[a:1]
if !empty(s:batchmode) && entry.type == 'file'
call s:set_mark(s:batchmode, a:1)
call startify#set_mark(s:batchmode, a:1)
else
call s:open_buffer(entry)
endif