Function: hyperbole--disable-mode
hyperbole--disable-mode is a byte-compiled function defined in
hyperbole.el.
Signature
(hyperbole--disable-mode)
Documentation
Disable Hyperbole keys, menus and hooks.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyperbole.el
(defun hyperbole--disable-mode ()
"Disable Hyperbole keys, menus and hooks."
;; Deactivate hywiki-mode
(hywiki-mode 0)
;; Deactivate hyperbole-mode
;; Delete Hyperbole menu from all menubars.
(hui-menu-remove Hyperbole)
;;
;; Remove Hyperbole button comment from future outgoing mail.
(when (boundp 'smail:comment) (setq smail:comment nil))
(remove-hook 'after-init-hook #'hyperb:init)
;;
(setq directory-abbrev-alist (remq hyperb:cygdrive
directory-abbrev-alist)
hpath:posix-mount-point-to-mswindows-alist nil)
;;
(remove-hook (if (boundp 'write-file-functions)
'write-file-functions
'write-file-hooks)
#'hattr:save))