Batchmode: disable batchmode on VV etc.

Also indicate it with a message when the batchmode is turned off.
This commit is contained in:
Marco Hinz 2019-03-25 12:15:58 +01:00 committed by Marco Hinz
parent 3dda0f55df
commit a4d663ebb9

View file

@ -844,8 +844,8 @@ endfunction
" Function: #set_batchmode {{{1 " Function: #set_batchmode {{{1
function! startify#set_batchmode(batchmode) abort function! startify#set_batchmode(batchmode) abort
let s:batchmode = a:batchmode let s:batchmode = (a:batchmode == s:batchmode) ? '' : a:batchmode
echomsg 'Batchmode: '. s:batchmode echo empty(s:batchmode) ? 'Batchmode off' : 'Batchmode: '. s:batchmode
endfunction endfunction
" Function: s:set_mark {{{1 " Function: s:set_mark {{{1