Function: term-paste

term-paste is an interactive and byte-compiled function defined in term.el.gz.

Signature

(term-paste)

Documentation

Insert the last stretch of killed text at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-paste ()
  "Insert the last stretch of killed text at point."
  (interactive)
   (term-send-raw-string (current-kill 0)))