From: Kim F. Storm Date: Wed, 20 Jul 2005 11:03:41 +0000 (+0000) Subject: (cua-mode): Improve doc string. X-Git-Tag: emacs-pretest-22.0.90~7971 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3685c8a4bfbe2a704eff516a6d78b948718021b3;p=emacs.git (cua-mode): Improve doc string. --- diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 9bb8768083c..905bb727a0e 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el @@ -1332,10 +1332,26 @@ If ARG is the atom `-', scroll upward by nearly full screen." ;;;###autoload (define-minor-mode cua-mode "Toggle CUA key-binding mode. -When enabled, using shifted movement keys will activate the region (and -highlight the region using `transient-mark-mode'), and typed text replaces -the active selection. C-z, C-x, C-c, and C-v will undo, cut, copy, and -paste (in addition to the normal Emacs bindings)." +When enabled, using shifted movement keys will activate the +region (and highlight the region using `transient-mark-mode'), +and typed text replaces the active selection. + +Also when enabled, you can use C-z, C-x, C-c, and C-v to undo, +cut, copy, and paste in addition to the normal Emacs bindings. +The C-x and C-c keys only do cut and copy when the region is +active, so in most cases, they do not conflict with the normal +function of these prefix keys. + +If you really need to perform a command which starts with one of +the prefix keys even when the region is active, you have three +options: +- press the prefix key twice very quickly (within 0.2 seconds), +- press the prefix key and the following key within 0.2 seconds), or +- use the SHIFT key with the prefix key, i.e. C-S-x or C-S-c. + +You can customize `cua-enable-cua-keys' to completely disable the +CUA bindings, or `cua-prefix-override-inhibit-delay' to change +the prefix fallback behaviour." :global t :group 'cua :set-after '(cua-enable-modeline-indications cua-use-hyper-key)