# HG changeset patch # User Kim F. Storm # Date 1121857421 0 # Node ID 95c2d98fdeb118e9d6baba6a5d76a8cce0a34872 # Parent a3cc91405cc896398d4adb73bf8e2dc49013c90b (cua-mode): Improve doc string. diff -r a3cc91405cc8 -r 95c2d98fdeb1 lisp/emulation/cua-base.el --- a/lisp/emulation/cua-base.el Wed Jul 20 11:03:28 2005 +0000 +++ b/lisp/emulation/cua-base.el Wed Jul 20 11:03:41 2005 +0000 @@ -1332,10 +1332,26 @@ ;;;###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)