Variable: cua-rectangle-mark-key

cua-rectangle-mark-key is a customizable variable defined in cua-base.el.gz.

Value

[(control return)]

Documentation

Global key used to toggle the cua rectangle mark.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-base.el.gz
(defcustom cua-rectangle-mark-key [(control return)]
  "Global key used to toggle the cua rectangle mark."
  :set (lambda (symbol value)
         (set symbol value)
         (when (and (boundp 'cua--keymaps-initialized)
                    cua--keymaps-initialized)
           (define-key cua-global-keymap value
             #'cua-set-rectangle-mark)
           (when (boundp 'cua--rectangle-keymap)
             (define-key cua--rectangle-keymap value
               #'cua-clear-rectangle-mark)
             (define-key cua--region-keymap value
               #'cua-toggle-rectangle-mark))))
  :type 'key-sequence)