From 3dda0f55dff1ec30013851633f8043aa8bdb3815 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 19 Mar 2019 17:58:20 +0100 Subject: [PATCH] Introduce batchmode In batchmode you can mark entries without going to their line first. Use uppercase characters `B`/`S`/`V`/`T` to switch between modes. E.g. V123 is the same as going to entry 1, hitting v, then entry 2 hitting v, then entry 3, hitting v. Use as usual to open the marked entries. Using the lowercase variants still works as before and resets an active batchmode. Implements https://github.com/mhinz/vim-startify/issues/357 --- autoload/startify.vim | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 21a5c0e..ae0a64a 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -373,7 +373,12 @@ endfunction " Function: #open_buffers {{{1 function! startify#open_buffers(...) abort if exists('a:1') " used in mappings - call s:open_buffer(b:startify.entries[a:1]) + let entry = b:startify.entries[a:1] + if !empty(s:batchmode) && entry.type == 'file' + call s:set_mark(s:batchmode, a:1) + else + call s:open_buffer(entry) + endif return endif @@ -806,6 +811,10 @@ function! s:set_mappings() abort nnoremap s :call set_mark('S') nnoremap t :call set_mark('T') nnoremap v :call set_mark('V') + nnoremap B :call startify#set_batchmode('B') + nnoremap S :call startify#set_batchmode('S') + nnoremap T :call startify#set_batchmode('T') + nnoremap V :call startify#set_batchmode('V') nnoremap :call startify#open_buffers() nnoremap :call leftmouse() nnoremap <2-LeftMouse> :call startify#open_buffers() @@ -833,11 +842,21 @@ function! s:set_mappings() abort endfor endfunction +" Function: #set_batchmode {{{1 +function! startify#set_batchmode(batchmode) abort + let s:batchmode = a:batchmode + echomsg 'Batchmode: '. s:batchmode +endfunction + " Function: s:set_mark {{{1 function! s:set_mark(type, ...) abort - let index = expand('') - let line = exists('a:1') ? a:1 : line('.') - let entry = b:startify.entries[line] + if a:0 + let entryline = a:1 + else + call startify#set_batchmode('') + let entryline = line('.') + endif + let entry = b:startify.entries[entryline] if entry.type != 'file' return @@ -850,6 +869,9 @@ function! s:set_mark(type, ...) abort \ 'T': 'tabnew', \ } + let origline = line('.') + execute entryline + let index = expand('') setlocal modifiable if entry.marked && index[0] == a:type @@ -864,10 +886,9 @@ function! s:set_mark(type, ...) abort execute 'normal! ci]'. repeat(a:type, len(index)) endif - " Reset cursor to fixed column, which is important for s:set_cursor(). - call cursor(line('.'), s:fixed_column) - setlocal nomodifiable nomodified + " Reset cursor to fixed column, which is important for s:set_cursor(). + call cursor(origline, s:fixed_column) endfunction " Function: s:sort_by_tick {{{1 @@ -1082,3 +1103,4 @@ let s:skiplist = get(g:, 'startify_skiplist', [ let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3)) let s:fixed_column = len(s:padding_left) + 2 +let s:batchmode = ''