aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-07-20 11:03:41 +0000
committerKim F. Storm2005-07-20 11:03:41 +0000
commit3685c8a4bfbe2a704eff516a6d78b948718021b3 (patch)
tree1b50b68c6d0e772ae3f5f9660f6657e4a451a8c5
parent200576f6eafe841753c77ff9e0e63a13467019f5 (diff)
downloademacs-3685c8a4bfbe2a704eff516a6d78b948718021b3.tar.gz
emacs-3685c8a4bfbe2a704eff516a6d78b948718021b3.zip
(cua-mode): Improve doc string.
-rw-r--r--lisp/emulation/cua-base.el24
1 files changed, 20 insertions, 4 deletions
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."
1332;;;###autoload 1332;;;###autoload
1333(define-minor-mode cua-mode 1333(define-minor-mode cua-mode
1334 "Toggle CUA key-binding mode. 1334 "Toggle CUA key-binding mode.
1335When enabled, using shifted movement keys will activate the region (and 1335When enabled, using shifted movement keys will activate the
1336highlight the region using `transient-mark-mode'), and typed text replaces 1336region (and highlight the region using `transient-mark-mode'),
1337the active selection. C-z, C-x, C-c, and C-v will undo, cut, copy, and 1337and typed text replaces the active selection.
1338paste (in addition to the normal Emacs bindings)." 1338
1339Also when enabled, you can use C-z, C-x, C-c, and C-v to undo,
1340cut, copy, and paste in addition to the normal Emacs bindings.
1341The C-x and C-c keys only do cut and copy when the region is
1342active, so in most cases, they do not conflict with the normal
1343function of these prefix keys.
1344
1345If you really need to perform a command which starts with one of
1346the prefix keys even when the region is active, you have three
1347options:
1348- press the prefix key twice very quickly (within 0.2 seconds),
1349- press the prefix key and the following key within 0.2 seconds), or
1350- use the SHIFT key with the prefix key, i.e. C-S-x or C-S-c.
1351
1352You can customize `cua-enable-cua-keys' to completely disable the
1353CUA bindings, or `cua-prefix-override-inhibit-delay' to change
1354the prefix fallback behaviour."
1339 :global t 1355 :global t
1340 :group 'cua 1356 :group 'cua
1341 :set-after '(cua-enable-modeline-indications cua-use-hyper-key) 1357 :set-after '(cua-enable-modeline-indications cua-use-hyper-key)