Function: embark-select

embark-select is an autoloaded, interactive and byte-compiled function defined in embark.el.

Signature

(embark-select)

Documentation

Add or remove the target from the current buffer's selection.

You can act on all selected targets at once with embark-act-all. When called from outside embark-act this command will select the first target at point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
;;;###autoload
(defun embark-select ()
  "Add or remove the target from the current buffer's selection.
You can act on all selected targets at once with `embark-act-all'.
When called from outside `embark-act' this command will select
the first target at point."
  (interactive)
  (if-let* ((target (car (embark--targets))))
      (apply #'embark--select target)
    (user-error "No target to select")))