소스 검색

Batchmode: disable batchmode on VV etc.

Also indicate it with a message when the batchmode is turned off.
Marco Hinz 6 년 전
부모
커밋
a4d663ebb9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      autoload/startify.vim

+ 2 - 2
autoload/startify.vim

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