Function: cua--prefix-copy-handler
cua--prefix-copy-handler is an interactive and byte-compiled function
defined in cua-base.el.gz.
Signature
(cua--prefix-copy-handler ARG)
Documentation
Copy region/rectangle, then replay last key.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/cua-base.el.gz
(defun cua--prefix-copy-handler (arg)
"Copy region/rectangle, then replay last key."
(interactive "P")
(cua-copy-region arg)
(let ((keys (this-single-command-keys)))
(setq unread-command-events
(cons (aref keys (1- (length keys))) unread-command-events))))