Function: cua--prefix-cut-handler

cua--prefix-cut-handler is an interactive and byte-compiled function defined in cua-base.el.gz.

Signature

(cua--prefix-cut-handler ARG)

Documentation

Cut region/rectangle, then replay last key.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-base.el.gz
(defun cua--prefix-cut-handler (arg)
  "Cut region/rectangle, then replay last key."
  (interactive "P")
  (cua-cut-region arg)
  (let ((keys (this-single-command-keys)))
    (setq unread-command-events
	  (cons (aref keys (1- (length keys))) unread-command-events))))