projects
/
dotfiles-public.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26a1031
)
.emacs.d/site-lisp/wtk_common.el: Disable the system bell (\a)
author
W. Trevor King
<wking@tremily.us>
Sun, 30 Mar 2014 01:06:24 +0000
(18:06 -0700)
committer
W. Trevor King
<wking@tremily.us>
Sun, 30 Mar 2014 23:32:46 +0000
(16:32 -0700)
I enable the system bell (xset b) to get IRC notifications from irssi,
but I don't want Emacs beeping at me if I try and move outside the
buffer ;).
src/.emacs.d/site-lisp/wtk_common.el
patch
|
blob
|
history
diff --git
a/src/.emacs.d/site-lisp/wtk_common.el
b/src/.emacs.d/site-lisp/wtk_common.el
index cefe9f61a96f0a1b7e3d7e9abead0d68124ff904..f0428878d93c63dc9a0476f0e5fcb05bfc9e1713 100644
(file)
--- a/
src/.emacs.d/site-lisp/wtk_common.el
+++ b/
src/.emacs.d/site-lisp/wtk_common.el
@@
-12,3
+12,6
@@
; Make scripts executable on Save (saves having to do the chmod every time)
(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)
+
+; Disable the bell (\a, ^G) completely
+(setq ring-bell-function 'ignore)