Function: isearch-yank-kill

isearch-yank-kill is an interactive and byte-compiled function defined in isearch.el.gz.

Signature

(isearch-yank-kill)

Documentation

Pull string from kill ring into search string.

Probably introduced at or before Emacs version 24.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-yank-kill ()
  "Pull string from kill ring into search string."
  (interactive)
  (unless isearch-mode (isearch-mode t))
  (isearch-yank-string (current-kill 0)))