Variable: hkey-init

hkey-init is a customizable variable defined in hyperbole.el.

Value

t

Documentation

A non-nil value (default) at system load time binds Hyperbole keys.

Keys bound are the Action and Assist Keyboard Keys, as well as other keys. { (hkey-either)} invokes the Action Key and
{\C-u  (hkey-either)} invokes the Assist Key. Additionally,
{C-h A (hkey-help)} shows what the Action Key will do in the current
context (wherever point is). {\C-u C-h A (hkey-help)} shows what the Assist Key will do.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyperbole.el
;;; ************************************************************************
;;; Public Variables
;;; ************************************************************************

(defcustom hkey-init t
  "A non-nil value (default) at system load time binds Hyperbole keys.
Keys bound are the Action and Assist Keyboard Keys, as well as
other keys.  {\\[hkey-either]} invokes the Action Key and
{\\`C-u' \\[hkey-either]} invokes the Assist Key.  Additionally,
{\\[hkey-help]} shows what the Action Key will do in the current
context (wherever point is).  {\\`C-u' \\[hkey-help]} shows what the
Assist Key will do."
  :type 'boolean
  :group 'hyperbole-keys)