Variable: cua-prefix-override-inhibit-delay
cua-prefix-override-inhibit-delay is a customizable variable defined
in cua-base.el.gz.
Value
0.2
Documentation
If non-nil, time in seconds to delay before overriding prefix key.
If there is additional input within this time, the prefix key is used as a normal prefix key. So typing a key sequence quickly will inhibit overriding the prefix key. As a special case, if the prefix key is repeated within this time, the first prefix key is discarded, so typing a prefix key twice in quick succession will also inhibit overriding the prefix key. If the value is nil, use a shifted prefix key to inhibit the override.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/cua-base.el.gz
(defcustom cua-prefix-override-inhibit-delay 0.2
"If non-nil, time in seconds to delay before overriding prefix key.
If there is additional input within this time, the prefix key is
used as a normal prefix key. So typing a key sequence quickly will
inhibit overriding the prefix key.
As a special case, if the prefix key is repeated within this time, the
first prefix key is discarded, so typing a prefix key twice in quick
succession will also inhibit overriding the prefix key.
If the value is nil, use a shifted prefix key to inhibit the override."
:type '(choice (number :tag "Inhibit delay")
(const :tag "No delay" nil)))