Function: assist-key

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

Signature

(assist-key)

Documentation

Use one key to perform functions that vary by context.

If no matching context is found, the default function set with the assist-key-default-function variable is run. Return non-nil unless assist-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 assist-key ()
  "Use one key to perform functions that vary by context.
If no matching context is found, the default function set with
the `assist-key-default-function' variable is run.  Return
non-nil unless `assist-key-default-function' variable is not
bound to a valid function."
  (interactive)
  (assist-key-clear-variables)
  (unwind-protect
      (prog1 (assist-key-internal)
	(run-hooks 'assist-key-depress-hook 'assist-key-release-hook))
    (setq assist-key-depressed-flag nil)))