소스 검색

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