Function: xwidget-webkit-isearch-yank-kill

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

Signature

(xwidget-webkit-isearch-yank-kill)

Documentation

Append the most recent kill from kill-ring to the current query.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-isearch-yank-kill ()
  "Append the most recent kill from `kill-ring' to the current query."
  (interactive)
  (unless xwidget-webkit-isearch-mode
    (xwidget-webkit-isearch-mode t))
  (setq xwidget-webkit-isearch--string
        (concat xwidget-webkit-isearch--string
                (current-kill 0)))
  (xwidget-webkit-isearch--update))