Function: embark-isearch-forward
embark-isearch-forward is an interactive and byte-compiled function
defined in embark.el.
Signature
(embark-isearch-forward)
Documentation
Prompt for string in the minibuffer and start isearch forwards.
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-forward ()
"Prompt for string in the minibuffer and start isearch forwards.
Unlike isearch, this command reads the string from the
minibuffer, which means it can be used as an Embark action."
(interactive)
(isearch-mode t)
(isearch-edit-string))