From 9814df57c199271a9b2b70c75ebe4189dc96b126 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 19 Sep 2019 19:26:08 +0200 Subject: [PATCH] Expose startify#set_mark() This function can be used to remap the functionality that is mapped to the b/s/v/t keys by default. References https://github.com/mhinz/vim-startify/issues/390 --- autoload/startify.vim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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