Explorar o código

Batchmode: fix unknown function issue

Fixes https://github.com/mhinz/vim-startify/issues/398
Marco Hinz %!s(int64=6) %!d(string=hai) anos
pai
achega
2ea9085789
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      autoload/startify.vim

+ 1 - 1
autoload/startify.vim

@@ -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