Disable Carbon Emacs scroll beep - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:07:09Z http://stackoverflow.com/feeds/question/324457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/324457/disable-carbon-emacs-scroll-beep 2 Disable Carbon Emacs scroll beep Kyle Cronin 2008-11-27T18:38:22Z 2009-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#324501 2 Answer by Svante for Disable Carbon Emacs scroll beep Svante 2008-11-27T19:12:34Z 2008-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#331590 3 Answer by wunki for Disable Carbon Emacs scroll beep wunki 2008-12-01T17:36:30Z 2008-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#731660 1 Answer by nominolo for Disable Carbon Emacs scroll beep nominolo 2009-04-08T20:22:27Z 2009-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>