From 5ee8914b26e9f0b2d8ec01b3cef8c46e7a3954b5 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 2 Apr 2021 16:52:31 +0200 Subject: [PATCH] Do not beep when toggling batch mode Fixes https://github.com/mhinz/vim-startify/issues/479 --- autoload/startify.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 1340d71..4c13b49 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -918,6 +918,10 @@ function! startify#set_mark(type, ...) abort let index = expand('') setlocal modifiable + " https://github.com/vim/vim/issues/8053 + let showmatch = &showmatch + let &showmatch = 0 + if entry.marked && index[0] == a:type let entry.cmd = 'edit' let entry.marked = 0 @@ -930,6 +934,8 @@ function! startify#set_mark(type, ...) abort execute 'normal! "_ci]'. repeat(a:type, len(index)) endif + let &showmatch = showmatch + setlocal nomodifiable nomodified " Reset cursor to fixed column, which is important for s:set_cursor(). call cursor(origline, s:fixed_column)