Function: smart-helm-get-current-action

smart-helm-get-current-action is a byte-compiled function defined in hui-mouse.el.

Signature

(smart-helm-get-current-action &optional ACTION)

Documentation

Return the helm default action.

Get it from optional ACTION, the helm saved action or from the selected helm item.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-helm-get-current-action (&optional action)
  "Return the helm default action.
Get it from optional ACTION, the helm saved action or from the
selected helm item."
  (helm-get-default-action (or action
                               helm-saved-action
                               (if (get-buffer helm-action-buffer)
                                   (helm-get-selection helm-action-buffer)
                                 (helm-get-actions-from-current-source)))))