1

When I go abroad text or even under any conditions in Emacs works system speaker. How can i turn of it.

I try to write system-bell off in /etc/inputrc but it isn't help

Thank you

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84
0xAX
  • 20,957
  • 26
  • 117
  • 206

2 Answers2

1

Or execute

xset b off

in a terminal.

michieljoris
  • 621
  • 6
  • 4
1

I have the following in my .emacs:

(setq ring-bell-function (lambda () ))

That turns off all beeps. I hate beeps of any sort so this works for me, but if you only want to turn off some types of beeps, there are ways to do that too. For example, if you would like to make all the beeps into a visible flash on the screen, you can use:

(setq visible-bell t)

instead of setting the ring-bell-function. Also, check out this similar question.

Community
  • 1
  • 1
E.M.
  • 4,498
  • 2
  • 23
  • 30