Function: hkey-toggle-debug

hkey-toggle-debug is an interactive and byte-compiled function defined in hmouse-drv.el.

Signature

(hkey-toggle-debug &optional ARG)

Documentation

Toggle whether Hyperbole logs Smart Key events.

Key events can be used later for analysis/submission using {\C-h h m c}. With optional ARG, enable iff ARG is positive.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
(defun hkey-toggle-debug (&optional arg)
  "Toggle whether Hyperbole logs Smart Key events.
Key events can be used later for analysis/submission using {\\`C-h' h m c}.
With optional ARG, enable iff ARG is positive."
  (interactive "P")
  (if (or (and arg (<= (prefix-numeric-value arg) 0))
	  (and (not (and arg (> (prefix-numeric-value arg) 0)))
	       hkey-debug))
      (progn (setq hkey-debug nil)
	     (message "Smart Key debugging is off."))
    (setq hkey-debug t)
    (message "Smart Key debugging is on; press a Smart Key to see its context.")))