notes/os/editors/emacs/.emacs.d/rc/emacs-rc-bell.el
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

18 строки
364 B
EmacsLisp

;; disable bell (beep)
(defun my-bell-function ()
(unless
(memq this-command
'(isearch-abort
next-line previous-line backward-char forward-char
scroll-up scroll-down cua-scroll-up cua-scroll-down
down up
keyboard-quit exit-minibuffer abort-recursive-edit
mwheel-scroll
)
)
(ding)
)
)
(setq ring-bell-function 'my-bell-function)