Function: action-key

action-key is an interactive and byte-compiled function defined in hmouse-drv.el.

Signature

(action-key)

Documentation

Use one key to perform functions that vary by context.

If no matching context is found, the default function set with the action-key-default-function variable is run. Return t unless the action-key-default-function variable is not bound to a valid function.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
(defun action-key ()
  "Use one key to perform functions that vary by context.
If no matching context is found, the default function set with
the `action-key-default-function' variable is run.  Return t
unless the `action-key-default-function' variable is not bound to
a valid function."
  (interactive)
  (hattr:clear 'hbut:current)
  (action-key-clear-variables)
  (unwind-protect
      (prog1 (action-key-internal)
	(run-hooks 'action-key-depress-hook 'action-key-release-hook))
    (setq action-key-depressed-flag nil)))