Преглед изворни кода

Batchmode: fix unknown function issue

Fixes https://github.com/mhinz/vim-startify/issues/398
Marco Hinz пре 6 година
родитељ
комит
2ea9085789
1 измењених фајлова са 1 додато и 1 уклоњено
  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