我试图在视觉和音频上禁用vim上的错误铃声。但是我不能让他们停下来。
我的vimrc中有以下内容:
" Disable annoying beeping set noerrorbells set vb t_vb=
这不起作用,我想一些插件或其他设置正在重置它所以我再次添加它到我的vimrc结束,仍然没有运气。
我可以让它关闭的唯一方法是在所有内容加载后手动调用set vb t_vb =。我想我可以通过在插件/文件夹中添加一个脚本来模拟这个,但我试图避免这一点,因为这意味着每当我切换到另一台机器时我必须设置另一件事。
你可以在这里看到我的完整vimrc:https://github.com/lerp/dotfiles/blob/master/vimrc
假设您在GVim中遇到此问题,请添加以下行
原文链接:https://www.f2er.com/bash/387204.htmlautocmd GUIEnter * set vb t_vb=
在你的if(“gui_running”)条件块应该有帮助。
来自:help’visualbell’:
Note: When the GUI starts,'t_vb' is reset to its default value. You might want to set it again in your gvimrc.