Function: embark--raw-action-keymap
embark--raw-action-keymap is a byte-compiled function defined in
embark.el.
Signature
(embark--raw-action-keymap TYPE)
Documentation
Return raw action map for targets of given TYPE.
This does not take into account the default action, help key or
cycling bindings, just what's registered in
embark-keymap-alist.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--raw-action-keymap (type)
"Return raw action map for targets of given TYPE.
This does not take into account the default action, help key or
cycling bindings, just what's registered in
`embark-keymap-alist'."
(make-composed-keymap
(mapcar #'symbol-value
(let ((actions (or (alist-get type embark-keymap-alist)
(alist-get t embark-keymap-alist))))
(ensure-list actions)))))