Disable Carbon Emacs scroll beep - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:07:09Zhttp://stackoverflow.com/feeds/question/324457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/324457/disable-carbon-emacs-scroll-beep2Disable Carbon Emacs scroll beepKyle Cronin2008-11-27T18:38:22Z2009-04-08T22:52:39Z
<p>I've been looking into adopting Carbon Emacs for use on my Mac, and the only stumbling block I've run into is the annoying scroll beep when you try to scroll past the end of the document. I've looked online but I can't seem to find what I should add to my .emacs that will stop it from beeping when scrolling. I don't want to silence it completely, just when scrolling. Any ideas?</p>
http://stackoverflow.com/questions/324457/disable-carbon-emacs-scroll-beep/324501#3245012Answer by Svante for Disable Carbon Emacs scroll beepSvante2008-11-27T19:12:34Z2008-11-27T19:12:34Z<p>You will have to customize the <code>ring-bell-function</code>.</p>
<p>This page may provide hints:</p>
<p><a href="http://www.emacswiki.org/emacs/AlarmBell" rel="nofollow">http://www.emacswiki.org/emacs/AlarmBell</a></p>
http://stackoverflow.com/questions/324457/disable-carbon-emacs-scroll-beep/331590#3315903Answer by wunki for Disable Carbon Emacs scroll beepwunki2008-12-01T17:36:30Z2008-12-01T17:36:30Z<pre><code>(setq visible-bell t)
</code></pre>
<p>This makes emacs flash instead of beep.</p>
http://stackoverflow.com/questions/324457/disable-carbon-emacs-scroll-beep/731660#7316601Answer by nominolo for Disable Carbon Emacs scroll beepnominolo2009-04-08T20:22:27Z2009-04-08T22:52:39Z<p>Using the hints from the <a href="http://www.emacswiki.org/emacs/AlarmBell" rel="nofollow">Emacs wiki AlarmBell page</a>, this does it for me: </p>
<pre><code>(defun my-bell-function ()
(unless (memq this-command
'(isearch-abort abort-recursive-edit exit-minibuffer
keyboard-quit mwheel-scroll down up next-line previous-line
backward-char forward-char))
(ding)))
(setq ring-bell-function 'my-bell-function)
</code></pre>
<p>If you don't know the name of a command, press <code>C-h k</code> then the key/action you would like to get the name of.</p>