Function: embark-isearch-backward

embark-isearch-backward is an interactive and byte-compiled function defined in embark.el.

Signature

(embark-isearch-backward)

Documentation

Prompt for string in the minibuffer and start isearch backwards.

Unlike isearch, this command reads the string from the minibuffer, which means it can be used as an Embark action.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark-isearch-backward ()
  "Prompt for string in the minibuffer and start isearch backwards.
Unlike isearch, this command reads the string from the
minibuffer, which means it can be used as an Embark action."
  (interactive)
  (isearch-mode nil)
  (isearch-edit-string))