diff --git a/autoload/startify.vim b/autoload/startify.vim index e58d6db..9038f24 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -827,10 +827,10 @@ endfunction function! s:set_mappings() abort nnoremap i :enew startinsert nnoremap :enew startinsert - nnoremap b :call set_mark('B') - nnoremap s :call set_mark('S') - nnoremap t :call set_mark('T') - nnoremap v :call set_mark('V') + nnoremap b :call startify#set_mark('B') + nnoremap s :call startify#set_mark('S') + nnoremap t :call startify#set_mark('T') + nnoremap v :call startify#set_mark('V') nnoremap B :call startify#set_batchmode('B') nnoremap S :call startify#set_batchmode('S') nnoremap T :call startify#set_batchmode('T') @@ -868,8 +868,8 @@ function! startify#set_batchmode(batchmode) abort echo empty(s:batchmode) ? 'Batchmode off' : 'Batchmode: '. s:batchmode endfunction -" Function: s:set_mark {{{1 -function! s:set_mark(type, ...) abort +" Function: #set_mark {{{1 +function! startify#set_mark(type, ...) abort if a:0 let entryline = a:1 else