【centos】禁用系统蜂蜜声

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/heiyouhei123/article/details/82659315

1. 在VM中安装的centos系统,Tab命令操作的时候经常发出bee bee的声音,如何禁止发出响声?

解决: 修改/etc/inputrc文件,在里面增加如下配置项: set bell-style none

参考:
https://communities.vmware.com/thread/303661

2. 在VM中安装的centos系统,Vi操作文件的时候经常发出bee bee的声音,如何禁止?

解决: 修改 .vimrc文件,在里面配置如下设置:

set noerrorbells visualbell t_vb=
autocmd GUIEnter * set visualbell t_vb=

或者

set noeb vb t_vb=
au GUIEnter * set vb t_vb=

参考:
http://vim.wikia.com/wiki/Disable_beeping

猜你喜欢

转载自blog.csdn.net/heiyouhei123/article/details/82659315
今日推荐