在 MacVim 中禁用铃声

问题描述 投票:0回答:3

我知道这个话题已经被问过多次。但我似乎无法禁用 MacVim 中的铃声。我的 .vimrc 中有什么:

set noerrorbells 
set novisualbell
set t_vb=

我错过了什么吗?

vim notifications macvim
3个回答
28
投票

这应该是缺失的部分:

autocmd! GUIEnter * set vb t_vb=

4
投票

对于由于某种原因无法完成这项工作的任何人。

set vb t_vb=     " no visual bell & flash

为我完成了这项工作。


4
投票

Vim:

set belloff = all
在你的
.vimrc

NeoVim:

vim.opt.belloff = "all"
中的
options.lua
-
"all"
是默认值

© www.soinside.com 2019 - 2024. All rights reserved.