Function: embark--export-customize

embark--export-customize is a byte-compiled function defined in embark.el.

Signature

(embark--export-customize ITEMS TYPE PRED)

Documentation

Create a customization buffer listing ITEMS.

TYPE is the items type. PRED is a predicate function used to filter the items.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--export-customize (items type pred)
  "Create a customization buffer listing ITEMS.
TYPE is the items type.
PRED is a predicate function used to filter the items."
  (custom-buffer-create
   (cl-loop for item in items
            for sym = (intern-soft item)
            when (and sym (funcall pred sym)) collect `(,sym ,type))))