* Re: beep
2003-01-15 15:47 beep McClain
@ 2003-01-15 14:24 ` Alfred M. Szmidt
0 siblings, 0 replies; 5+ messages in thread
From: Alfred M. Szmidt @ 2003-01-15 14:24 UTC (permalink / raw)
Cc: help-gnu-emacs
How do I change or switch off this annoying beep emacs plays for
nearly everything?
You do it by reading the lovely Emacs manual.
>From (emacs)Display Vars
If the variable `visible-bell' is non-`nil', Emacs attempts to make
the whole screen blink when it would normally make an audible bell
sound. This variable has no effect if your terminal does not have a way
to make the screen blink.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: beep
[not found] <mailman.302.1042639410.21513.help-gnu-emacs@gnu.org>
@ 2003-01-15 14:29 ` Thomas Gehrlein
2003-01-15 14:54 ` beep Rafael Villarroel
1 sibling, 0 replies; 5+ messages in thread
From: Thomas Gehrlein @ 2003-01-15 14:29 UTC (permalink / raw)
McClain <McClain@uni.de> writes:
> Hello ppl,
>
> How do I change or switch off this annoying
> beep emacs plays for nearly everything?
Put this in your .emacs:
(setq visible-bell t)
Thomas
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: beep
[not found] <mailman.302.1042639410.21513.help-gnu-emacs@gnu.org>
2003-01-15 14:29 ` beep Thomas Gehrlein
@ 2003-01-15 14:54 ` Rafael Villarroel
2003-01-15 19:51 ` beep Robert Marshall
1 sibling, 1 reply; 5+ messages in thread
From: Rafael Villarroel @ 2003-01-15 14:54 UTC (permalink / raw)
McClain <McClain@uni.de> writes:
> How do I change or switch off this annoying
> beep emacs plays for nearly everything?
>
put this in your .emacs:
;; blink instead of beep when an error occurs
(setq visible-bell t)
Rafael
^ permalink raw reply [flat|nested] 5+ messages in thread
* beep
@ 2003-01-15 15:47 McClain
2003-01-15 14:24 ` beep Alfred M. Szmidt
0 siblings, 1 reply; 5+ messages in thread
From: McClain @ 2003-01-15 15:47 UTC (permalink / raw)
Hello ppl,
How do I change or switch off this annoying
beep emacs plays for nearly everything?
thanks in advance...
...Sebastian
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: beep
2003-01-15 14:54 ` beep Rafael Villarroel
@ 2003-01-15 19:51 ` Robert Marshall
0 siblings, 0 replies; 5+ messages in thread
From: Robert Marshall @ 2003-01-15 19:51 UTC (permalink / raw)
On 15 Jan 2003, rvf@hotpop.com wrote:
> McClain <McClain@uni.de> writes:
>
>> How do I change or switch off this annoying
>> beep emacs plays for nearly everything?
>>
>
> put this in your .emacs:
>
> ;; blink instead of beep when an error occurs
> (setq visible-bell t)
>
Or alternatively, if you just want it to be less nearly everything
(setq ring-bell-function
(lambda ()
(unless (memq this-command
'(isearch-abort abort-recursive-edit exit-minibuffer
keyboard-quit)) ;; add extra commands here!
(ding))))
pinched off a ng somewhere
R
--
Take me to the world
A world that smiles
With streets instead of aisles
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-01-15 19:51 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.302.1042639410.21513.help-gnu-emacs@gnu.org>
2003-01-15 14:29 ` beep Thomas Gehrlein
2003-01-15 14:54 ` beep Rafael Villarroel
2003-01-15 19:51 ` beep Robert Marshall
2003-01-15 15:47 beep McClain
2003-01-15 14:24 ` beep Alfred M. Szmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).