Function: kotl-mode:clipboard-yank

kotl-mode:clipboard-yank is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:clipboard-yank)

Documentation

Insert the clipboard contents, or the last stretch of killed text.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:clipboard-yank ()
  "Insert the clipboard contents, or the last stretch of killed text."
  (interactive "*")
  (let ((select-enable-clipboard t))
    (kotl-mode:yank)))