Variable: embark-transformer-alist

embark-transformer-alist is a customizable variable defined in embark.el.

Value

((heading . embark-org--refine-heading)
 (org-link . embark-org--refine-link-type)
 (minor-mode . embark--lookup-lighter-minor-mode)
 (embark-keybinding . embark--keybinding-command)
 (project-file . projectile--embark-project-file-transform)
 (package . embark--remove-package-version)
 (multi-category . embark--refine-multi-category)
 (buffer . embark--uniquify-orig-buffer)
 (project-buffer . embark--uniquify-orig-buffer)
 (file . embark--simplify-path))

Documentation

Alist associating type to functions for transforming targets.

Each function should take a type and a target string and return a pair of the form a cons of the new type and the new target.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-transformer-alist
  '((minor-mode . embark--lookup-lighter-minor-mode)
    (embark-keybinding . embark--keybinding-command)
    (project-file . embark--project-file-full-path)
    (package . embark--remove-package-version)
    (multi-category . embark--refine-multi-category)
    (buffer . embark--uniquify-orig-buffer)
    (project-buffer . embark--uniquify-orig-buffer)
    (file . embark--simplify-path))
  "Alist associating type to functions for transforming targets.
Each function should take a type and a target string and return a
pair of the form a `cons' of the new type and the new target."
  :type '(alist :key-type symbol :value-type function))