Function: hyperbole-mode

hyperbole-mode is an autoloaded, interactive and byte-compiled function defined in hyperbole.el.

Signature

(hyperbole-mode &optional ARG)

Documentation

Toggle Hyperbole global minor mode with M-x hyperbole-mode (hyperbole-mode).

Hyperbole is the Everyday Hypertextual Information Manager.

When Hyperbole mode is enabled, the hyperbole-mode(var)/hyperbole-mode(fun) variable is non-nil, Hyperbole menus are enabled, as are Hyperbole keys.

Invoke the Hyperbole minibuffer menu with C-h h (hyperbole). See the Info documentation at "(hyperbole)Top".

                       hui:kill-region
<double-down-mouse-1> nil
<double-mouse-1> hui-select-thing-with-mouse
<triple-down-mouse-1> nil
<triple-mouse-1> hui-select-thing-with-mouse
C-c . hui-select-goto-matching-delimiter
C-c / hui-search-web
C-c @ hycontrol-windows-grid
C-c RET hui-select-thing
C-c \ hycontrol-enable-windows-mode
C-h A hkey-help
C-w hui:kill-region
C-x r s hui:copy-to-register
ESC <return> hkey-either
M-<return> hkey-either
M-RET hkey-either
M-o hkey-operate
M-w hui:kill-ring-save
 hkey-either

This is a global minor mode. If called interactively, toggle the Hyperbole mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate (default-value \=hyperbole-mode)'.

The mode's hook is called both when the mode is enabled and when it is disabled.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyperbole.el
;;;###autoload
(define-minor-mode hyperbole-mode
  "Toggle Hyperbole global minor mode with \\[hyperbole-mode].

Hyperbole is the Everyday Hypertextual Information Manager.

When Hyperbole mode is enabled, the `hyperbole-mode' variable
is non-nil, Hyperbole menus are enabled, as are Hyperbole keys.

Invoke the Hyperbole minibuffer menu with \\[hyperbole].  See the
Info documentation at \"(hyperbole)Top\".

\\{hyperbole-mode-map}"
  :global t
  :lighter hyperbole-mode-lighter
  (if hyperbole-mode
      (hyperbole--enable-mode)
    (hyperbole--disable-mode)))