*** empty log message ***
[bpt/emacs.git] / lisp / emulation / cua-base.el
CommitLineData
72cc582e
KS
1;;; cua-base.el --- emulate CUA key bindings
2
5fd6d89f 3;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
ceb4c4d3 4;; 2005, 2006 Free Software Foundation, Inc.
72cc582e
KS
5
6;; Author: Kim F. Storm <storm@cua.dk>
7;; Keywords: keyboard emulation convenience cua
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
72cc582e
KS
25
26
27;;; Commentary:
28
29;; This is the CUA package which provides a complete emulation of the
30;; standard CUA key bindings (Motif/Windows/Mac GUI) for selecting and
31;; manipulating the region where S-<movement> is used to highlight &
32;; extend the region.
33
34a63289
KS
34;; CUA style key bindings for cut and paste
35;; ----------------------------------------
36
37;; This package allows the C-z, C-x, C-c, and C-v keys to be
72cc582e
KS
38;; bound appropriately according to the Motif/Windows GUI, i.e.
39;; C-z -> undo
40;; C-x -> cut
41;; C-c -> copy
42;; C-v -> paste
43;;
44;; The tricky part is the handling of the C-x and C-c keys which
45;; are normally used as prefix keys for most of emacs' built-in
46;; commands. With CUA they still do!!!
47;;
48;; Only when the region is currently active (and highlighted since
49;; transient-mark-mode is used), the C-x and C-c keys will work as CUA
50;; keys
51;; C-x -> cut
52;; C-c -> copy
53;; When the region is not active, C-x and C-c works as prefix keys!
54;;
55;; This probably sounds strange and difficult to get used to - but
56;; based on my own experience and the feedback from many users of
57;; this package, it actually works very well and users adapt to it
a1506d29 58;; instantly - or at least very quickly. So give it a try!
72cc582e
KS
59;; ... and in the few cases where you make a mistake and accidentally
60;; delete the region - you just undo the mistake (with C-z).
61;;
62;; If you really need to perform a command which starts with one of
63;; the prefix keys even when the region is active, you have three options:
64;; - press the prefix key twice very quickly (within 0.2 seconds),
1023b169 65;; - press the prefix key and the following key within 0.2 seconds, or
72cc582e
KS
66;; - use the SHIFT key with the prefix key, i.e. C-X or C-C
67;;
68;; This behaviour can be customized via the
69;; cua-prefix-override-inhibit-delay variable.
70
71;; In addition to using the shifted movement keys, you can also use
72;; [C-space] to start the region and use unshifted movement keys to extend
73;; it. To cancel the region, use [C-space] or [C-g].
74
75;; If you prefer to use the standard emacs cut, copy, paste, and undo
76;; bindings, customize cua-enable-cua-keys to nil.
77
34a63289
KS
78
79;; Typing text replaces the region
80;; -------------------------------
81
82;; When the region is active, i.e. highlighted, the text in region is
83;; replaced by the text you type.
84
85;; The replaced text is saved in register 0 which can be inserted using
86;; the key sequence M-0 C-v (see the section on register support below).
87
88;; If you have just replaced a highlighted region with typed text,
89;; you can repeat the replace with M-v. This will search forward
90;; for a streach of text identical to the previous contents of the
91;; region (i.e. the contents of register 0) and replace it with the
92;; text you typed to replace the original region. Repeating M-v will
93;; replace the next matching region and so on.
94;;
95;; Example: Suppose you have a line like this
96;; The redo operation will redo the last redoable command
97;; which you want to change into
98;; The repeat operation will repeat the last repeatable command
99;; This is done by highlighting the first occurrence of "redo"
100;; and type "repeat" M-v M-v.
101
102;; Note: Since CUA-mode duplicates the functionality of the
103;; delete-selection-mode, that mode is automatically disabled when
104;; CUA-mode is enabled.
105
106
72cc582e
KS
107;; CUA mode indications
108;; --------------------
109;; You can choose to let CUA use different cursor colors to indicate
110;; overwrite mode and read-only buffers. For example, the following
111;; setting will use a RED cursor in normal (insertion) mode in
112;; read-write buffers, a YELLOW cursor in overwrite mode in read-write
113;; buffers, and a GREEN cursor read-only buffers:
114;;
115;; (setq cua-normal-cursor-color "red")
116;; (setq cua-overwrite-cursor-color "yellow")
117;; (setq cua-read-only-cursor-color "green")
118;;
119
120;; CUA register support
121;; --------------------
122;; Emacs' standard register support is also based on a separate set of
123;; "register commands".
a1506d29 124;;
72cc582e
KS
125;; CUA's register support is activated by providing a numeric
126;; prefix argument to the C-x, C-c, and C-v commands. For example,
127;; to copy the selected region to register 2, enter [M-2 C-c].
128;; Or if you have activated the keypad prefix mode, enter [kp-2 C-c].
a1506d29 129;;
72cc582e
KS
130;; And CUA will copy and paste normal region as well as rectangles
131;; into the registers, i.e. you use exactly the same command for both.
a1506d29 132;;
72cc582e
KS
133;; In addition, the last highlighted text that is deleted (not
134;; copied), e.g. by [delete] or by typing text over a highlighted
135;; region, is automatically saved in register 0, so you can insert it
136;; using [M-0 C-v].
137
138;; CUA rectangle support
139;; ---------------------
140;; Emacs' normal rectangle support is based on interpreting the region
141;; between the mark and point as a "virtual rectangle", and using a
142;; completely separate set of "rectangle commands" [C-x r ...] on the
143;; region to copy, kill, fill a.s.o. the virtual rectangle.
a1506d29 144;;
85d392cb
KS
145;; cua-mode's superior rectangle support uses a true visual
146;; representation of the selected rectangle, i.e. it highlights the
147;; actual part of the buffer that is currently selected as part of the
148;; rectangle. Unlike emacs' traditional rectangle commands, the
149;; selected rectangle always as straight left and right edges, even
150;; when those are in the middle of a TAB character or beyond the end
151;; of the current line. And it does this without actually modifying
152;; the buffer contents (it uses display overlays to visualize the
153;; virtual dimensions of the rectangle).
154;;
155;; This means that cua-mode's rectangles are not limited to the actual
156;; contents of the buffer, so if the cursor is currently at the end of a
157;; short line, you can still extend the rectangle to include more columns
158;; of longer lines in the same rectangle. And you can also have the
159;; left edge of a rectangle start in the middle of a TAB character.
160;; Sounds strange? Try it!
161;;
c9ee062d 162;; To start a rectangle, use [C-return] and extend it using the normal
85d392cb
KS
163;; movement keys (up, down, left, right, home, end, C-home,
164;; C-end). Once the rectangle has the desired size, you can cut or
165;; copy it using C-x and C-c (or C-w and M-w), and you can
166;; subsequently insert it - as a rectangle - using C-v (or C-y). So
167;; the only new command you need to know to work with cua-mode
c9ee062d 168;; rectangles is C-return!
72cc582e
KS
169;;
170;; Normally, when you paste a rectangle using C-v (C-y), each line of
171;; the rectangle is inserted into the existing lines in the buffer.
172;; If overwrite-mode is active when you paste a rectangle, it is
173;; inserted as normal (multi-line) text.
a1506d29 174;;
85d392cb
KS
175;; If you prefer the traditional rectangle marking (i.e. don't want
176;; straight edges), [M-p] toggles this for the current rectangle,
177;; or you can customize cua-virtual-rectangle-edges.
72cc582e
KS
178
179;; And there's more: If you want to extend or reduce the size of the
180;; rectangle in one of the other corners of the rectangle, just use
181;; [return] to move the cursor to the "next" corner. Or you can use
182;; the [M-up], [M-down], [M-left], and [M-right] keys to move the
183;; entire rectangle overlay (but not the contents) in the given
184;; direction.
185;;
c9ee062d 186;; [C-return] cancels the rectangle
72cc582e
KS
187;; [C-space] activates the region bounded by the rectangle
188
189;; If you type a normal (self-inserting) character when the rectangle is
190;; active, the character is inserted on the "current side" of every line
191;; of the rectangle. The "current side" is the side on which the cursor
192;; is currently located. If the rectangle is only 1 column wide,
193;; insertion will be performed to the left when the cursor is at the
194;; bottom of the rectangle. So, for example, to comment out an entire
195;; paragraph like this one, just place the cursor on the first character
196;; of the first line, and enter the following:
c9ee062d 197;; C-return M-} ; ; <space> C-return
a1506d29 198
72cc582e
KS
199;; cua-mode's rectangle support also includes all the normal rectangle
200;; functions with easy access:
201;;
202;; [M-a] aligns all words at the left edge of the rectangle
203;; [M-b] fills the rectangle with blanks (tabs and spaces)
204;; [M-c] closes the rectangle by removing all blanks at the left edge
205;; of the rectangle
206;; [M-f] fills the rectangle with a single character (prompt)
207;; [M-i] increases the first number found on each line of the rectangle
208;; by the amount given by the numeric prefix argument (default 1)
209;; It recognizes 0x... as hexadecimal numbers
210;; [M-k] kills the rectangle as normal multi-line text (for paste)
211;; [M-l] downcases the rectangle
212;; [M-m] copies the rectangle as normal multi-line text (for paste)
213;; [M-n] fills each line of the rectangle with increasing numbers using
214;; a supplied format string (prompt)
a1506d29 215;; [M-o] opens the rectangle by moving the highlighted text to the
72cc582e 216;; right of the rectangle and filling the rectangle with blanks.
85d392cb
KS
217;; [M-p] toggles virtual straight rectangle edges
218;; [M-P] inserts tabs and spaces (padding) to make real straight edges
72cc582e
KS
219;; [M-q] performs text filling on the rectangle
220;; [M-r] replaces REGEXP (prompt) by STRING (prompt) in rectangle
221;; [M-R] reverse the lines in the rectangle
222;; [M-s] fills each line of the rectangle with the same STRING (prompt)
223;; [M-t] performs text fill of the rectangle with TEXT (prompt)
224;; [M-u] upcases the rectangle
225;; [M-|] runs shell command on rectangle
226;; [M-'] restricts rectangle to lines with CHAR (prompt) at left column
227;; [M-/] restricts rectangle to lines matching REGEXP (prompt)
228;; [C-?] Shows a brief list of the above commands.
229
230;; [M-C-up] and [M-C-down] scrolls the lines INSIDE the rectangle up
231;; and down; lines scrolled outside the top or bottom of the rectangle
232;; are lost, but can be recovered using [C-z].
233
234;; CUA Global Mark
a1506d29 235;; ---------------
72cc582e
KS
236;; The final feature provided by CUA is the "global mark", which
237;; makes it very easy to copy bits and pieces from the same and other
238;; files into the current text. To enable and cancel the global mark,
239;; use [S-C-space]. The cursor will blink when the global mark
240;; is active. The following commands behave differently when the global
241;; mark is set:
a1506d29 242;; <ch> All characters (including newlines) you type are inserted
72cc582e
KS
243;; at the global mark!
244;; [C-x] If you cut a region or rectangle, it is automatically inserted
245;; at the global mark, and the global mark is advanced.
246;; [C-c] If you copy a region or rectangle, it is immediately inserted
247;; at the global mark, and the global mark is advanced.
248;; [C-v] Copies a single character to the global mark.
249;; [C-d] Moves (i.e. deletes and inserts) a single character to the
250;; global mark.
251;; [backspace] deletes the character before the global mark, while
252;; [delete] deltes the character after the global mark.
253
254;; [S-C-space] Jumps to and cancels the global mark.
255;; [C-u S-C-space] Cancels the global mark (stays in current buffer).
256
257;; [TAB] Indents the current line or rectangle to the column of the
258;; global mark.
259
260;;; Code:
261
262;;; Customization
263
264(defgroup cua nil
265 "Emulate CUA key bindings including C-x and C-c."
266 :prefix "cua"
267 :group 'editing-basics
268 :group 'convenience
269 :group 'emulations
bf247b6e 270 :version "22.1"
72cc582e
KS
271 :link '(emacs-commentary-link :tag "Commentary" "cua-base.el")
272 :link '(emacs-library-link :tag "Lisp File" "cua-base.el"))
273
72cc582e
KS
274(defcustom cua-enable-cua-keys t
275 "*Enable using C-z, C-x, C-c, and C-v for undo, cut, copy, and paste.
276If the value is t, these mappings are always enabled. If the value is
1023b169 277`shift', these keys are only enabled if the last region was marked with
72cc582e
KS
278a shifted movement key. If the value is nil, these keys are never
279enabled."
a1506d29 280 :type '(choice (const :tag "Disabled" nil)
72cc582e 281 (const :tag "Shift region only" shift)
c1cdea1a 282 (other :tag "Enabled" t))
72cc582e
KS
283 :group 'cua)
284
285(defcustom cua-highlight-region-shift-only nil
286 "*If non-nil, only highlight region if marked with S-<move>.
287When this is non-nil, CUA toggles `transient-mark-mode' on when the region
288is marked using shifted movement keys, and off when the mark is cleared.
289But when the mark was set using \\[cua-set-mark], transient-mark-mode
290is not turned on."
291 :type 'boolean
292 :group 'cua)
293
a1506d29 294(defcustom cua-prefix-override-inhibit-delay
72cc582e
KS
295 (if (featurep 'lisp-float-type) (/ (float 1) (float 5)) nil)
296 "*If non-nil, time in seconds to delay before overriding prefix key.
297If there is additional input within this time, the prefix key is
298used as a normal prefix key. So typing a key sequence quickly will
299inhibit overriding the prefix key.
300As a special case, if the prefix keys repeated within this time, the
301first prefix key is discarded, so typing a prefix key twice in quick
302succession will also inhibit overriding the prefix key.
303If the value is nil, use a shifted prefix key to inhibit the override."
304 :type '(choice (number :tag "Inhibit delay")
305 (const :tag "No delay" nil))
306 :group 'cua)
307
ae6ffe99
KS
308(defcustom cua-delete-selection t
309 "*If non-nil, typed text replaces text in the active selection."
310 :type '(choice (const :tag "Disabled" nil)
311 (other :tag "Enabled" t))
312 :group 'cua)
313
72cc582e
KS
314(defcustom cua-keep-region-after-copy nil
315 "If non-nil, don't deselect the region after copying."
316 :type 'boolean
317 :group 'cua)
318
ae6ffe99 319(defcustom cua-toggle-set-mark t
c64a6023 320 "*If non-nil, the `cua-set-mark' command toggles the mark."
ae6ffe99
KS
321 :type '(choice (const :tag "Disabled" nil)
322 (other :tag "Enabled" t))
323 :group 'cua)
324
c64a6023
KS
325(defcustom cua-auto-mark-last-change nil
326 "*If non-nil, set implicit mark at position of last buffer change.
327This means that \\[universal-argument] \\[cua-set-mark] will jump to the position
328of the last buffer change before jumping to the explicit marks on the mark ring.
329See `cua-set-mark' for details."
330 :type 'boolean
331 :group 'cua)
332
72cc582e
KS
333(defcustom cua-enable-register-prefix 'not-ctrl-u
334 "*If non-nil, registers are supported via numeric prefix arg.
335If the value is t, any numeric prefix arg in the range 0 to 9 will be
a1506d29 336interpreted as a register number.
1023b169 337If the value is `not-ctrl-u', using C-u to enter a numeric prefix is not
a1506d29 338interpreted as a register number.
1023b169 339If the value is `ctrl-u-only', only numeric prefix entered with C-u is
72cc582e 340interpreted as a register number."
a1506d29 341 :type '(choice (const :tag "Disabled" nil)
72cc582e
KS
342 (const :tag "Enabled, but C-u arg is not a register" not-ctrl-u)
343 (const :tag "Enabled, but only for C-u arg" ctrl-u-only)
c1cdea1a 344 (other :tag "Enabled" t))
72cc582e
KS
345 :group 'cua)
346
347(defcustom cua-delete-copy-to-register-0 t
348 "*If non-nil, save last deleted region or rectangle to register 0."
349 :type 'boolean
350 :group 'cua)
351
72cc582e
KS
352(defcustom cua-enable-region-auto-help nil
353 "*If non-nil, automatically show help for active region."
354 :type 'boolean
355 :group 'cua)
356
357(defcustom cua-enable-modeline-indications nil
358 "*If non-nil, use minor-mode hook to show status in mode line."
359 :type 'boolean
360 :group 'cua)
361
362(defcustom cua-check-pending-input t
363 "*If non-nil, don't override prefix key if input pending.
c77d7c92 364It is rumoured that `input-pending-p' is unreliable under some window
72cc582e
KS
365managers, so try setting this to nil, if prefix override doesn't work."
366 :type 'boolean
367 :group 'cua)
368
c64a6023
KS
369(defcustom cua-paste-pop-rotate-temporarily nil
370 "*If non-nil, \\[cua-paste-pop] only rotates the kill-ring temporarily.
371This means that \\[cua-paste] always inserts the most recent kill, while one or
372more \\[cua-paste-pop]'s immediately following it will replace the previous text
373with the next older element on the `kill-ring'. If \\[cua-paste-pop] is used after
374any other command, it will insert the same element from the `kill-ring' as last
375time it was used."
376 :type 'boolean
377 :group 'cua)
72cc582e
KS
378
379;;; Rectangle Customization
380
85d392cb
KS
381(defcustom cua-virtual-rectangle-edges t
382 "*If non-nil, rectangles have virtual straight edges.
383Note that although rectangles are always DISPLAYED with straight edges, the
384buffer is NOT modified, until you execute a command that actually modifies it.
1023b169 385M-p toggles this feature when a rectangle is active."
72cc582e
KS
386 :type 'boolean
387 :group 'cua)
388
85d392cb
KS
389(defcustom cua-auto-tabify-rectangles 1000
390 "*If non-nil, automatically tabify after rectangle commands.
391This basically means that `tabify' is applied to all lines that
392are modified by inserting or deleting a rectangle. If value is
c77d7c92 393an integer, CUA will look for existing tabs in a region around
85d392cb
KS
394the rectangle, and only do the conversion if any tabs are already
395present. The number specifies then number of characters before
396and after the region marked by the rectangle to search."
397 :type '(choice (number :tag "Auto detect (limit)")
398 (const :tag "Disabled" nil)
399 (other :tag "Enabled" t))
400 :group 'cua)
401
1cb225da
KS
402(defcustom cua-rectangle-mark-key [(control return)]
403 "Global key used to toggle the cua rectangle mark."
404 :set #'(lambda (symbol value)
405 (set symbol value)
406 (when (and (boundp 'cua--keymaps-initalized)
407 cua--keymaps-initalized)
408 (define-key cua-global-keymap value
409 'cua-set-rectangle-mark)
410 (when (boundp 'cua--rectangle-keymap)
411 (define-key cua--rectangle-keymap value
412 'cua-clear-rectangle-mark)
413 (define-key cua--region-keymap value
414 'cua-toggle-rectangle-mark))))
415 :type 'key-sequence
416 :group 'cua)
417
1638bf54
KS
418(defcustom cua-rectangle-modifier-key 'meta
419 "*Modifier key used for rectangle commands bindings.
420On non-window systems, always use the meta modifier.
421Must be set prior to enabling CUA."
422 :type '(choice (const :tag "Meta key" meta)
ae6ffe99
KS
423 (const :tag "Alt key" alt)
424 (const :tag "Hyper key" hyper)
1638bf54
KS
425 (const :tag "Super key" super))
426 :group 'cua)
427
72cc582e
KS
428(defcustom cua-enable-rectangle-auto-help t
429 "*If non-nil, automatically show help for region, rectangle and global mark."
430 :type 'boolean
431 :group 'cua)
432
1e98d199 433(defface cua-rectangle
03622614
KS
434 '((default :inherit region)
435 (((class color)) :foreground "white" :background "maroon"))
72cc582e
KS
436 "*Font used by CUA for highlighting the rectangle."
437 :group 'cua)
438
1e98d199 439(defface cua-rectangle-noselect
03622614
KS
440 '((default :inherit region)
441 (((class color)) :foreground "white" :background "dimgray"))
72cc582e
KS
442 "*Font used by CUA for highlighting the non-selected rectangle lines."
443 :group 'cua)
444
72cc582e
KS
445
446;;; Global Mark Customization
447
448(defcustom cua-global-mark-keep-visible t
449 "*If non-nil, always keep global mark visible in other window."
450 :type 'boolean
451 :group 'cua)
452
1e98d199 453(defface cua-global-mark
fbcaad36
DN
454 '((((min-colors 88)(class color)) :foreground "black" :background "yellow1")
455 (((class color)) :foreground "black" :background "yellow")
03622614 456 (t :bold t))
72cc582e
KS
457 "*Font used by CUA for highlighting the global mark."
458 :group 'cua)
459
460(defcustom cua-global-mark-blink-cursor-interval 0.20
461 "*Blink cursor at this interval when global mark is active."
462 :type '(choice (number :tag "Blink interval")
463 (const :tag "No blink" nil))
464 :group 'cua)
465
466
467;;; Cursor Indication Customization
468
cadc926b 469(defcustom cua-enable-cursor-indications nil
72cc582e
KS
470 "*If non-nil, use different cursor colors for indications."
471 :type 'boolean
472 :group 'cua)
473
496c17d6
KS
474(defcustom cua-normal-cursor-color (or (and (boundp 'initial-cursor-color) initial-cursor-color)
475 (and (boundp 'initial-frame-alist)
476 (assoc 'cursor-color initial-frame-alist)
477 (cdr (assoc 'cursor-color initial-frame-alist)))
478 (and (boundp 'default-frame-alist)
479 (assoc 'cursor-color default-frame-alist)
480 (cdr (assoc 'cursor-color default-frame-alist)))
481 (frame-parameter nil 'cursor-color)
482 "red")
72cc582e 483 "Normal (non-overwrite) cursor color.
2ed2415d
KS
484Default is to load cursor color from initial or default frame parameters.
485
486If the value is a COLOR name, then only the `cursor-color' attribute will be
b1227a16 487affected. If the value is a cursor TYPE (one of: box, hollow, bar, or hbar),
2ed2415d
KS
488then only the `cursor-type' property will be affected. If the value is
489a cons (TYPE . COLOR), then both properties are affected."
496c17d6 490 :initialize 'custom-initialize-default
2ed2415d
KS
491 :type '(choice
492 (color :tag "Color")
493 (choice :tag "Type"
494 (const :tag "Filled box" box)
495 (const :tag "Vertical bar" bar)
63baed99 496 (const :tag "Horizontal bar" hbar)
b1227a16 497 (const :tag "Hollow box" hollow))
2ed2415d
KS
498 (cons :tag "Color and Type"
499 (choice :tag "Type"
500 (const :tag "Filled box" box)
501 (const :tag "Vertical bar" bar)
63baed99 502 (const :tag "Horizontal bar" hbar)
b1227a16 503 (const :tag "Hollow box" hollow))
2ed2415d 504 (color :tag "Color")))
72cc582e
KS
505 :group 'cua)
506
507(defcustom cua-read-only-cursor-color "darkgreen"
3ffc8a8a 508 "*Cursor color used in read-only buffers, if non-nil.
2ed2415d
KS
509Only used when `cua-enable-cursor-indications' is non-nil.
510
511If the value is a COLOR name, then only the `cursor-color' attribute will be
b1227a16 512affected. If the value is a cursor TYPE (one of: box, hollow, bar, or hbar),
2ed2415d
KS
513then only the `cursor-type' property will be affected. If the value is
514a cons (TYPE . COLOR), then both properties are affected."
515 :type '(choice
516 (color :tag "Color")
517 (choice :tag "Type"
518 (const :tag "Filled box" box)
519 (const :tag "Vertical bar" bar)
63baed99 520 (const :tag "Horizontal bar" hbar)
b1227a16 521 (const :tag "Hollow box" hollow))
2ed2415d
KS
522 (cons :tag "Color and Type"
523 (choice :tag "Type"
524 (const :tag "Filled box" box)
525 (const :tag "Vertical bar" bar)
63baed99 526 (const :tag "Horizontal bar" hbar)
b1227a16 527 (const :tag "Hollow box" hollow))
2ed2415d 528 (color :tag "Color")))
72cc582e
KS
529 :group 'cua)
530
531(defcustom cua-overwrite-cursor-color "yellow"
532 "*Cursor color used when overwrite mode is set, if non-nil.
2ed2415d
KS
533Only used when `cua-enable-cursor-indications' is non-nil.
534
535If the value is a COLOR name, then only the `cursor-color' attribute will be
b1227a16 536affected. If the value is a cursor TYPE (one of: box, hollow, bar, or hbar),
2ed2415d
KS
537then only the `cursor-type' property will be affected. If the value is
538a cons (TYPE . COLOR), then both properties are affected."
539 :type '(choice
540 (color :tag "Color")
541 (choice :tag "Type"
542 (const :tag "Filled box" box)
543 (const :tag "Vertical bar" bar)
63baed99 544 (const :tag "Horizontal bar" hbar)
b1227a16 545 (const :tag "Hollow box" hollow))
2ed2415d
KS
546 (cons :tag "Color and Type"
547 (choice :tag "Type"
548 (const :tag "Filled box" box)
549 (const :tag "Vertical bar" bar)
63baed99 550 (const :tag "Horizontal bar" hbar)
b1227a16 551 (const :tag "Hollow box" hollow))
2ed2415d 552 (color :tag "Color")))
72cc582e
KS
553 :group 'cua)
554
555(defcustom cua-global-mark-cursor-color "cyan"
556 "*Indication for active global mark.
3ffc8a8a 557Will change cursor color to specified color if string.
2ed2415d
KS
558Only used when `cua-enable-cursor-indications' is non-nil.
559
560If the value is a COLOR name, then only the `cursor-color' attribute will be
b1227a16 561affected. If the value is a cursor TYPE (one of: box, hollow, bar, or hbar),
2ed2415d
KS
562then only the `cursor-type' property will be affected. If the value is
563a cons (TYPE . COLOR), then both properties are affected."
564 :type '(choice
565 (color :tag "Color")
566 (choice :tag "Type"
567 (const :tag "Filled box" box)
568 (const :tag "Vertical bar" bar)
63baed99 569 (const :tag "Horizontal bar" hbar)
b1227a16 570 (const :tag "Hollow box" hollow))
2ed2415d
KS
571 (cons :tag "Color and Type"
572 (choice :tag "Type"
573 (const :tag "Filled box" box)
574 (const :tag "Vertical bar" bar)
63baed99 575 (const :tag "Horizontal bar" hbar)
b1227a16 576 (const :tag "Hollow box" hollow))
2ed2415d 577 (color :tag "Color")))
72cc582e
KS
578 :group 'cua)
579
580
581;;; Rectangle support is in cua-rect.el
582
583(autoload 'cua-set-rectangle-mark "cua-rect" nil t nil)
584
585;; Stub definitions until it is loaded
586
587(when (not (featurep 'cua-rect))
588 (defvar cua--rectangle)
589 (setq cua--rectangle nil)
590 (defvar cua--last-killed-rectangle)
591 (setq cua--last-killed-rectangle nil))
592
593
594
595;;; Global Mark support is in cua-gmrk.el
596
4fe3f297 597(autoload 'cua-toggle-global-mark "cua-gmrk" nil t nil)
72cc582e
KS
598
599;; Stub definitions until cua-gmrk.el is loaded
600
601(when (not (featurep 'cua-gmrk))
602 (defvar cua--global-mark-active)
603 (setq cua--global-mark-active nil))
604
605
606(provide 'cua-base)
607
608(eval-when-compile
609 (require 'cua-rect)
610 (require 'cua-gmrk)
611 )
612
63e6f5b3
KS
613
614;;; Low-level Interface
615
616(defvar cua-inhibit-cua-keys nil
c77d7c92 617 "Buffer-local variable that may disable the CUA keymappings.")
63e6f5b3
KS
618(make-variable-buffer-local 'cua-inhibit-cua-keys)
619
72cc582e
KS
620;;; Aux. variables
621
622;; Current region was started using cua-set-mark.
623(defvar cua--explicit-region-start nil)
ecd61067 624(make-variable-buffer-local 'cua--explicit-region-start)
72cc582e
KS
625
626;; Latest region was started using shifted movement command.
627(defvar cua--last-region-shifted nil)
628
629;; buffer + point prior to current command when rectangle is active
630;; checked in post-command hook to see if point was moved
631(defvar cua--buffer-and-point-before-command nil)
632
633;; status string for mode line indications
634(defvar cua--status-string nil)
ecd61067 635(make-variable-buffer-local 'cua--status-string)
72cc582e
KS
636
637(defvar cua--debug nil)
638
639
640;;; Prefix key override mechanism
641
642;; The prefix override (when mark-active) operates in three substates:
643;; [1] Before using a prefix key
644;; [2] Immediately after using a prefix key
645;; [3] A fraction of a second later
646
647;; In state [1], the cua--prefix-override-keymap is active.
648;; This keymap binds the C-x and C-c prefix keys to the
649;; cua--prefix-override-handler function.
650
651;; When a prefix key is typed in state [1], cua--prefix-override-handler
652;; will push back the keys already read to the event queue. If input is
653;; pending, it changes directly to state [3]. Otherwise, a short timer [T]
654;; is started, and it changes to state [2].
655
656;; In state [2], the cua--prefix-override-keymap is inactive. Instead the
657;; cua--prefix-repeat-keymap is active. This keymap binds C-c C-c and C-x
658;; C-x to the cua--prefix-repeat-handler function.
659
660;; If the prefix key is repeated in state [2], cua--prefix-repeat-handler
661;; will cancel [T], back the keys already read (except for the second prefix
662;; keys) to the event queue, and changes to state [3].
663
664;; The basic cua--cua-keys-keymap binds [C-x timeout] to kill-region and
665;; [C-c timeout] to copy-region-as-kill, so if [T] times out in state [2],
666;; the cua--prefix-override-timeout function will push a `timeout' event on
667;; the event queue, and changes to state [3].
668
669;; In state [3] both cua--prefix-override-keymap and cua--prefix-repeat-keymap
670;; are inactive, so the timeout in cua-global-keymap binding is used, or the
671;; normal prefix key binding from the global or local map will be used.
672
673;; The pre-command hook (executed as a consequence of the timeout or normal
674;; prefix key binding) will cancel [T] and change from state [3] back to
675;; state [1]. So cua--prefix-override-handler and cua--prefix-repeat-handler
676;; are always called with state reset to [1]!
677
678;; State [1] is recognized by cua--prefix-override-timer is nil,
679;; state [2] is recognized by cua--prefix-override-timer is a timer, and
680;; state [3] is recognized by cua--prefix-override-timer is t.
681
682(defvar cua--prefix-override-timer nil)
683(defvar cua--prefix-override-length nil)
684
685(defun cua--prefix-override-replay (arg repeat)
686 (let* ((keys (this-command-keys))
687 (i (length keys))
688 (key (aref keys (1- i))))
689 (setq cua--prefix-override-length (- i repeat))
690 (setq cua--prefix-override-timer
691 (or
692 ;; In state [2], change to state [3]
693 (> repeat 0)
694 ;; In state [1], change directly to state [3]
695 (and cua-check-pending-input (input-pending-p))
696 ;; In state [1], [T] disabled, so change to state [3]
697 (not (numberp cua-prefix-override-inhibit-delay))
698 (<= cua-prefix-override-inhibit-delay 0)
699 ;; In state [1], start [T] and change to state [2]
a1506d29 700 (run-with-timer cua-prefix-override-inhibit-delay nil
72cc582e
KS
701 'cua--prefix-override-timeout)))
702 ;; Don't record this command
703 (setq this-command last-command)
704 ;; Restore the prefix arg
705 (setq prefix-arg arg)
706 (reset-this-command-lengths)
707 ;; Push the key back on the event queue
708 (setq unread-command-events (cons key unread-command-events))))
709
710(defun cua--prefix-override-handler (arg)
711 "Start timer waiting for prefix key to be followed by another key.
712Repeating prefix key when region is active works as a single prefix key."
713 (interactive "P")
714 (cua--prefix-override-replay arg 0))
715
716(defun cua--prefix-repeat-handler (arg)
717 "Repeating prefix key when region is active works as a single prefix key."
718 (interactive "P")
719 (cua--prefix-override-replay arg 1))
720
721(defun cua--prefix-copy-handler (arg)
722 "Copy region/rectangle, then replay last key."
723 (interactive "P")
724 (if cua--rectangle
725 (cua-copy-rectangle arg)
726 (cua-copy-region arg))
727 (let ((keys (this-single-command-keys)))
a1506d29 728 (setq unread-command-events
72cc582e
KS
729 (cons (aref keys (1- (length keys))) unread-command-events))))
730
731(defun cua--prefix-cut-handler (arg)
732 "Cut region/rectangle, then replay last key."
733 (interactive "P")
734 (if cua--rectangle
735 (cua-cut-rectangle arg)
736 (cua-cut-region arg))
737 (let ((keys (this-single-command-keys)))
a1506d29 738 (setq unread-command-events
72cc582e
KS
739 (cons (aref keys (1- (length keys))) unread-command-events))))
740
741(defun cua--prefix-override-timeout ()
742 (setq cua--prefix-override-timer t)
743 (when (= (length (this-command-keys)) cua--prefix-override-length)
744 (setq unread-command-events (cons 'timeout unread-command-events))
745 (if prefix-arg
746 (reset-this-command-lengths)
747 (setq overriding-terminal-local-map nil))
a23a8440 748 (cua--select-keymaps)))
72cc582e
KS
749
750
751;;; Aux. functions
752
753(defun cua--fallback ()
754 ;; Execute original command
755 (setq this-command this-original-command)
756 (call-interactively this-command))
a1506d29 757
72cc582e
KS
758(defun cua--keep-active ()
759 (setq mark-active t
760 deactivate-mark nil))
761
762(defun cua--deactivate (&optional now)
763 (setq cua--explicit-region-start nil)
764 (if (not now)
765 (setq deactivate-mark t)
766 (setq mark-active nil)
767 (run-hooks 'deactivate-mark-hook)))
768
769
770;; The current register prefix
771(defvar cua--register nil)
772
773(defun cua--prefix-arg (arg)
a1506d29 774 (setq cua--register
72cc582e 775 (and cua-enable-register-prefix
72cc582e 776 (integerp arg) (>= arg 0) (< arg 10)
1c62c12f
KS
777 (let* ((prefix (aref (this-command-keys) 0))
778 (ctrl-u-prefix (and (integerp prefix)
5632c006 779 (= prefix ?\C-u))))
a1506d29 780 (cond
5632c006
KS
781 ((eq cua-enable-register-prefix 'not-ctrl-u)
782 (not ctrl-u-prefix))
783 ((eq cua-enable-register-prefix 'ctrl-u-only)
784 ctrl-u-prefix)
785 (t t)))
72cc582e
KS
786 (+ arg ?0)))
787 (if cua--register nil arg))
788
72cc582e
KS
789
790;;; Region specific commands
791
5834ac92
KS
792(defvar cua--last-deleted-region-pos nil)
793(defvar cua--last-deleted-region-text nil)
794
72cc582e
KS
795(defun cua-delete-region ()
796 "Delete the active region.
797Save a copy in register 0 if `cua-delete-copy-to-register-0' is non-nil."
798 (interactive)
799 (let ((start (mark)) (end (point)))
800 (or (<= start end)
801 (setq start (prog1 end (setq end start))))
cf211404 802 (setq cua--last-deleted-region-text (filter-buffer-substring start end))
72cc582e 803 (if cua-delete-copy-to-register-0
5834ac92 804 (set-register ?0 cua--last-deleted-region-text))
72cc582e 805 (delete-region start end)
a1506d29 806 (setq cua--last-deleted-region-pos
5834ac92
KS
807 (cons (current-buffer)
808 (and (consp buffer-undo-list)
809 (car buffer-undo-list))))
ecd61067
KS
810 (cua--deactivate)
811 (/= start end)))
72cc582e
KS
812
813(defun cua-replace-region ()
814 "Replace the active region with the character you type."
815 (interactive)
ae6ffe99 816 (let ((not-empty (and cua-delete-selection (cua-delete-region))))
ecd61067
KS
817 (unless (eq this-original-command this-command)
818 (let ((overwrite-mode
819 (and overwrite-mode
820 not-empty
821 (not (eq this-original-command 'self-insert-command)))))
822 (cua--fallback)))))
72cc582e
KS
823
824(defun cua-copy-region (arg)
825 "Copy the region to the kill ring.
826With numeric prefix arg, copy to register 0-9 instead."
827 (interactive "P")
828 (setq arg (cua--prefix-arg arg))
829 (setq cua--last-killed-rectangle nil)
830 (let ((start (mark)) (end (point)))
831 (or (<= start end)
832 (setq start (prog1 end (setq end start))))
6a350b06
KS
833 (cond
834 (cua--register
835 (copy-to-register cua--register start end nil))
836 ((eq this-original-command 'clipboard-kill-ring-save)
837 (clipboard-kill-ring-save start end))
838 (t
839 (copy-region-as-kill start end)))
72cc582e
KS
840 (if cua-keep-region-after-copy
841 (cua--keep-active)
842 (cua--deactivate))))
843
844(defun cua-cut-region (arg)
845 "Cut the region and copy to the kill ring.
846With numeric prefix arg, copy to register 0-9 instead."
847 (interactive "P")
848 (setq cua--last-killed-rectangle nil)
849 (if buffer-read-only
850 (cua-copy-region arg)
851 (setq arg (cua--prefix-arg arg))
852 (let ((start (mark)) (end (point)))
853 (or (<= start end)
854 (setq start (prog1 end (setq end start))))
6a350b06
KS
855 (cond
856 (cua--register
857 (copy-to-register cua--register start end t))
858 ((eq this-original-command 'clipboard-kill-region)
859 (clipboard-kill-region start end))
860 (t
861 (kill-region start end))))
72cc582e
KS
862 (cua--deactivate)))
863
864;;; Generic commands for regions, rectangles, and global marks
865
866(defun cua-cancel ()
867 "Cancel the active region, rectangle, or global mark."
868 (interactive)
869 (setq mark-active nil)
870 (setq cua--explicit-region-start nil)
871 (if (fboundp 'cua--cancel-rectangle)
872 (cua--cancel-rectangle)))
873
874(defun cua-paste (arg)
875 "Paste last cut or copied region or rectangle.
876An active region is deleted before executing the command.
877With numeric prefix arg, paste from register 0-9 instead.
878If global mark is active, copy from register or one character."
879 (interactive "P")
880 (setq arg (cua--prefix-arg arg))
881 (let ((regtxt (and cua--register (get-register cua--register)))
85d392cb
KS
882 (count (prefix-numeric-value arg))
883 paste-column paste-lines)
72cc582e
KS
884 (cond
885 ((and cua--register (not regtxt))
886 (message "Nothing in register %c" cua--register))
887 (cua--global-mark-active
888 (if regtxt
889 (cua--insert-at-global-mark regtxt)
890 (when (not (eobp))
cf211404 891 (cua--insert-at-global-mark (filter-buffer-substring (point) (+ (point) count)))
72cc582e
KS
892 (forward-char count))))
893 (buffer-read-only
894 (message "Cannot paste into a read-only buffer"))
895 (t
896 ;; Must save register here, since delete may override reg 0.
897 (if mark-active
898 ;; Before a yank command, make sure we don't yank
899 ;; the same region that we are going to delete.
900 ;; That would make yank a no-op.
901 (if cua--rectangle
85d392cb
KS
902 (progn
903 (goto-char (min (mark) (point)))
904 (setq paste-column (cua--rectangle-left))
905 (setq paste-lines (cua--delete-rectangle))
906 (if (= paste-lines 1)
907 (setq paste-lines nil))) ;; paste all
cf211404 908 (if (string= (filter-buffer-substring (point) (mark))
72cc582e
KS
909 (car kill-ring))
910 (current-kill 1))
911 (cua-delete-region)))
912 (cond
913 (regtxt
914 (cond
915 ((consp regtxt) (cua--insert-rectangle regtxt))
916 ((stringp regtxt) (insert-for-yank regtxt))
917 (t (message "Unknown data in register %c" cua--register))))
918 ((and cua--last-killed-rectangle
919 (eq (and kill-ring (car kill-ring)) (car cua--last-killed-rectangle)))
920 (let ((pt (point)))
921 (when (not (eq buffer-undo-list t))
922 (setq this-command 'cua--paste-rectangle)
923 (undo-boundary)
924 (setq buffer-undo-list (cons pt buffer-undo-list)))
85d392cb
KS
925 (cua--insert-rectangle (cdr cua--last-killed-rectangle)
926 nil paste-column paste-lines)
72cc582e 927 (if arg (goto-char pt))))
6a350b06
KS
928 ((eq this-original-command 'clipboard-yank)
929 (clipboard-yank))
72cc582e
KS
930 (t (yank arg)))))))
931
c64a6023
KS
932
933;; cua-paste-pop-rotate-temporarily == t mechanism:
934;;
935;; C-y M-y M-y => only rotates kill ring temporarily,
936;; so next C-y yanks what previous C-y yanked,
937;;
938;; But: After another command, M-y remembers the temporary
939;; kill-ring position, so
940;; M-y => yanks what the last M-y yanked
941;;
942
943(defvar cua-paste-pop-count nil)
944
72cc582e
KS
945(defun cua-paste-pop (arg)
946 "Replace a just-pasted text or rectangle with a different text.
c64a6023
KS
947See `yank-pop' for details about the default behaviour. For an alternative
948behaviour, see `cua-paste-pop-rotate-temporarily'."
72cc582e 949 (interactive "P")
c64a6023
KS
950 (cond
951 ((eq last-command 'cua--paste-rectangle)
952 (undo)
953 (yank arg))
954 ((not cua-paste-pop-rotate-temporarily)
955 (yank-pop (prefix-numeric-value arg)))
956 (t
957 (let ((rotate (if (consp arg) 1 (prefix-numeric-value arg))))
958 (cond
959 ((or (null cua-paste-pop-count)
960 (eq last-command 'yank)
961 (eq last-command 'cua-paste))
962 (setq cua-paste-pop-count rotate)
963 (setq last-command 'yank)
964 (yank-pop cua-paste-pop-count))
965 ((eq last-command 'cua-paste-pop)
966 (unless (consp arg)
967 (setq cua-paste-pop-count (+ cua-paste-pop-count rotate)))
968 (setq last-command 'yank)
969 (yank-pop cua-paste-pop-count))
970 (t
971 (setq cua-paste-pop-count (+ cua-paste-pop-count rotate -1))
972 (yank (1+ cua-paste-pop-count)))))
973 ;; Undo rotating the kill-ring, so next C-y will
974 ;; yank the original head.
975 (unless (consp arg)
976 (setq kill-ring-yank-pointer kill-ring))
977 (setq this-command 'cua-paste-pop))))
72cc582e
KS
978
979(defun cua-exchange-point-and-mark (arg)
980 "Exchanges point and mark, but don't activate the mark.
981Activates the mark if a prefix argument is given."
982 (interactive "P")
983 (if arg
984 (setq mark-active t)
985 (let (mark-active)
986 (exchange-point-and-mark)
987 (if cua--rectangle
988 (cua--rectangle-corner 0)))))
989
34a63289
KS
990;; Typed text that replaced the highlighted region.
991(defvar cua--repeat-replace-text nil)
992
993(defun cua-repeat-replace-region (arg)
994 "Repeat replacing text of highlighted region with typed text.
c77d7c92
JB
995Searches for the next stretch of text identical to the region last
996replaced by typing text over it and replaces it with the same stretch
5834ac92 997of text."
34a63289 998 (interactive "P")
5834ac92
KS
999 (when cua--last-deleted-region-pos
1000 (save-excursion
1001 (save-restriction
1002 (set-buffer (car cua--last-deleted-region-pos))
1003 (widen)
1004 ;; Find the text that replaced the region via the undo list.
1005 (let ((ul buffer-undo-list)
1006 (elt (cdr cua--last-deleted-region-pos))
1007 u s e)
1008 (when elt
1009 (while (consp ul)
1010 (setq u (car ul) ul (cdr ul))
1011 (cond
1012 ((eq u elt) ;; got it
1013 (setq ul nil))
1014 ((and (consp u) (integerp (car u)) (integerp (cdr u)))
1015 (if (and s (= (cdr u) s))
1016 (setq s (car u))
1017 (setq s (car u) e (cdr u)))))))
c64a6023
KS
1018 (cond ((and s e (<= s e) (= s (mark t)))
1019 (setq cua--repeat-replace-text
1020 (filter-buffer-substring s e nil t)))
1021 ((and (null s) (eq u elt)) ;; nothing inserted
1022 (setq cua--repeat-replace-text
1023 ""))
1024 (t
1025 (message "Cannot locate replacement text"))))))
5834ac92
KS
1026 (setq cua--last-deleted-region-pos nil))
1027 (if (and cua--last-deleted-region-text
1028 cua--repeat-replace-text
1029 (search-forward cua--last-deleted-region-text nil t nil))
1030 (replace-match cua--repeat-replace-text arg t)))
34a63289 1031
72cc582e
KS
1032(defun cua-help-for-region (&optional help)
1033 "Show region specific help in echo area."
1034 (interactive)
a1506d29 1035 (message
72cc582e
KS
1036 (concat (if help "C-?:help " "")
1037 "C-z:undo C-x:cut C-c:copy C-v:paste S-ret:rect")))
1038
1039
1040;;; Shift activated / extended region
1041
c64a6023
KS
1042(defun cua-pop-to-last-change ()
1043 (let ((undo-list buffer-undo-list)
1044 pos elt)
1045 (while (and (not pos)
1046 (consp undo-list))
1047 (setq elt (car undo-list)
1048 undo-list (cdr undo-list))
1049 (cond
1050 ((integerp elt)
1051 (setq pos elt))
1052 ((not (consp elt)))
1053 ((and (integerp (cdr elt))
1054 (or (integerp (car elt)) (stringp (car elt))))
1055 (setq pos (cdr elt)))
1056 ((and (eq (car elt) 'apply) (consp (cdr elt)) (integerp (cadr elt)))
1057 (setq pos (nth 3 elt)))))
1058 (when (and pos
1059 (/= pos (point))
1060 (>= pos (point-min)) (<= pos (point-max)))
1061 (goto-char pos)
1062 t)))
1063
72cc582e
KS
1064(defun cua-set-mark (&optional arg)
1065 "Set mark at where point is, clear mark, or jump to mark.
f45a6831
KS
1066
1067With no prefix argument, clear mark if already set. Otherwise, set
1068mark, and push old mark position on local mark ring; also push mark on
3ffc8a8a 1069global mark ring if last mark was set in another buffer.
f45a6831
KS
1070
1071With argument, jump to mark, and pop a new position for mark off
c64a6023 1072the local mark ring (this does not affect the global mark ring).
f45a6831 1073Use \\[pop-global-mark] to jump to a mark off the global mark ring
c64a6023
KS
1074\(see `pop-global-mark').
1075
1076If `cua-auto-mark-last-change' is non-nil, this command behaves as if there
1077was an implicit mark at the position of the last buffer change.
ce92443f
KS
1078
1079Repeating the command without the prefix jumps to the next position
c64a6023 1080off the local (or global) mark ring.
f45a6831
KS
1081
1082With a double \\[universal-argument] prefix argument, unconditionally set mark."
72cc582e 1083 (interactive "P")
72cc582e 1084 (cond
f45a6831
KS
1085 ((and (consp arg) (> (prefix-numeric-value arg) 4))
1086 (push-mark-command nil))
fc803e8d 1087 ((eq last-command 'pop-to-mark-command)
f45a6831
KS
1088 (setq this-command 'pop-to-mark-command)
1089 (pop-to-mark-command))
ce92443f 1090 ((and (eq last-command 'pop-global-mark) (not arg))
f45a6831
KS
1091 (setq this-command 'pop-global-mark)
1092 (pop-global-mark))
72cc582e 1093 (arg
fc803e8d 1094 (setq this-command 'pop-to-mark-command)
c64a6023
KS
1095 (or (and cua-auto-mark-last-change
1096 (cua-pop-to-last-change))
1097 (pop-to-mark-command)))
ae6ffe99 1098 ((and cua-toggle-set-mark mark-active)
72cc582e
KS
1099 (cua--deactivate)
1100 (message "Mark Cleared"))
1101 (t
fc803e8d 1102 (push-mark-command nil nil)
72cc582e
KS
1103 (setq cua--explicit-region-start t)
1104 (setq cua--last-region-shifted nil)
1105 (if cua-enable-region-auto-help
1106 (cua-help-for-region t)))))
1107
82851d10
KS
1108;;; Scrolling commands which does not signal errors at top/bottom
1109;;; of buffer at first key-press (instead moves to top/bottom
1110;;; of buffer).
1111
1112(defun cua-scroll-up (&optional arg)
1113 "Scroll text of current window upward ARG lines; or near full screen if no ARG.
1114If window cannot be scrolled further, move cursor to bottom line instead.
1115A near full screen is `next-screen-context-lines' less than a full screen.
1116Negative ARG means scroll downward.
1117If ARG is the atom `-', scroll downward by nearly full screen."
1118 (interactive "P")
1119 (cond
1120 ((eq arg '-) (cua-scroll-down nil))
1121 ((< (prefix-numeric-value arg) 0)
1122 (cua-scroll-down (- (prefix-numeric-value arg))))
1123 ((eobp)
1124 (scroll-up arg)) ; signal error
1125 (t
1126 (condition-case nil
1127 (scroll-up arg)
1128 (end-of-buffer (goto-char (point-max)))))))
1129
4905133f
KS
1130(put 'cua-scroll-up 'CUA 'move)
1131
82851d10
KS
1132(defun cua-scroll-down (&optional arg)
1133 "Scroll text of current window downward ARG lines; or near full screen if no ARG.
1134If window cannot be scrolled further, move cursor to top line instead.
1135A near full screen is `next-screen-context-lines' less than a full screen.
1136Negative ARG means scroll upward.
1137If ARG is the atom `-', scroll upward by nearly full screen."
1138 (interactive "P")
1139 (cond
1140 ((eq arg '-) (cua-scroll-up nil))
1141 ((< (prefix-numeric-value arg) 0)
1142 (cua-scroll-up (- (prefix-numeric-value arg))))
1143 ((bobp)
1144 (scroll-down arg)) ; signal error
1145 (t
1146 (condition-case nil
1147 (scroll-down arg)
1148 (beginning-of-buffer (goto-char (point-min)))))))
1149
ec503c28 1150(put 'cua-scroll-down 'CUA 'move)
4905133f 1151
72cc582e
KS
1152;;; Cursor indications
1153
1154(defun cua--update-indications ()
2ed2415d
KS
1155 (let* ((cursor
1156 (cond
1157 ((and cua--global-mark-active
1158 cua-global-mark-cursor-color)
1159 cua-global-mark-cursor-color)
1160 ((and buffer-read-only
1161 cua-read-only-cursor-color)
1162 cua-read-only-cursor-color)
85d392cb 1163 ((and cua-overwrite-cursor-color overwrite-mode)
2ed2415d
KS
1164 cua-overwrite-cursor-color)
1165 (t cua-normal-cursor-color)))
1166 (color (if (consp cursor) (cdr cursor) cursor))
1167 (type (if (consp cursor) (car cursor) cursor)))
1168 (if (and color
1169 (stringp color)
1170 (not (equal color (frame-parameter nil 'cursor-color))))
1171 (set-cursor-color color))
1172 (if (and type
1173 (symbolp type)
6aa06cd8 1174 (not (eq type default-cursor-type)))
2ed2415d 1175 (setq default-cursor-type type))))
72cc582e
KS
1176
1177
1178;;; Pre-command hook
1179
01096a7b 1180(defun cua--pre-command-handler-1 ()
53c11b7e
KS
1181 ;; Cancel prefix key timeout if user enters another key.
1182 (when cua--prefix-override-timer
1183 (if (timerp cua--prefix-override-timer)
1184 (cancel-timer cua--prefix-override-timer))
1185 (setq cua--prefix-override-timer nil))
1186
1187 (cond
1188 ;; Only symbol commands can have necessary properties
1189 ((not (symbolp this-command))
1190 nil)
1191
1192 ;; Handle delete-selection property on non-movement commands
1193 ((not (eq (get this-command 'CUA) 'move))
1194 (when (and mark-active (not deactivate-mark))
1195 (let* ((ds (or (get this-command 'delete-selection)
1196 (get this-command 'pending-delete)))
1197 (nc (cond
1198 ((not ds) nil)
1199 ((eq ds 'yank)
1200 'cua-paste)
1201 ((eq ds 'kill)
1202 (if cua--rectangle
1203 'cua-copy-rectangle
1204 'cua-copy-region))
1205 ((eq ds 'supersede)
1206 (if cua--rectangle
1207 'cua-delete-rectangle
1208 'cua-delete-region))
1209 (t
1210 (if cua--rectangle
1211 'cua-delete-rectangle ;; replace?
1212 'cua-replace-region)))))
1213 (if nc
1214 (setq this-original-command this-command
1215 this-command nc)))))
1216
1217 ;; Handle shifted cursor keys and other movement commands.
1218 ;; If region is not active, region is activated if key is shifted.
1219 ;; If region is active, region is cancelled if key is unshifted (and region not started with C-SPC).
1220 ;; If rectangle is active, expand rectangle in specified direction and ignore the movement.
1221 ((if window-system
1222 (memq 'shift (event-modifiers
1223 (aref (this-single-command-raw-keys) 0)))
1224 (or
1225 (memq 'shift (event-modifiers
1226 (aref (this-single-command-keys) 0)))
1227 ;; See if raw escape sequence maps to a shifted event, e.g. S-up or C-S-home.
1228 (and (boundp 'function-key-map)
1229 function-key-map
1230 (let ((ev (lookup-key function-key-map
1231 (this-single-command-raw-keys))))
1232 (and (vector ev)
1233 (symbolp (setq ev (aref ev 0)))
1234 (string-match "S-" (symbol-name ev)))))))
1235 (unless mark-active
1236 (push-mark-command nil t))
1237 (setq cua--last-region-shifted t)
1238 (setq cua--explicit-region-start nil))
1239
1240 ;; Set mark if user explicitly said to do so
1241 ((or cua--explicit-region-start cua--rectangle)
1242 (unless mark-active
1243 (push-mark-command nil nil)))
1244
1245 ;; Else clear mark after this command.
1246 (t
1247 ;; If we set mark-active to nil here, the region highlight will not be
1248 ;; removed by the direct_output_ commands.
1249 (setq deactivate-mark t)))
1250
1251 ;; Detect extension of rectangles by mouse or other movement
1252 (setq cua--buffer-and-point-before-command
1253 (if cua--rectangle (cons (current-buffer) (point)))))
01096a7b 1254
72cc582e 1255(defun cua--pre-command-handler ()
01096a7b
KS
1256 (when cua-mode
1257 (condition-case nil
1258 (cua--pre-command-handler-1)
1259 (error nil))))
72cc582e
KS
1260
1261;;; Post-command hook
1262
01096a7b
KS
1263(defun cua--post-command-handler-1 ()
1264 (when cua--global-mark-active
1265 (cua--global-mark-post-command))
1266 (when (fboundp 'cua--rectangle-post-command)
1267 (cua--rectangle-post-command))
1268 (setq cua--buffer-and-point-before-command nil)
1269 (if (or (not mark-active) deactivate-mark)
1270 (setq cua--explicit-region-start nil))
1271
1272 ;; Debugging
1273 (if cua--debug
1274 (cond
1275 (cua--rectangle (cua--rectangle-assert))
1276 (mark-active (message "Mark=%d Point=%d Expl=%s"
1277 (mark t) (point) cua--explicit-region-start))))
72cc582e 1278
01096a7b
KS
1279 ;; Disable transient-mark-mode if rectangle active in current buffer.
1280 (if (not (window-minibuffer-p (selected-window)))
1281 (setq transient-mark-mode (and (not cua--rectangle)
1282 (if cua-highlight-region-shift-only
1283 (not cua--explicit-region-start)
1284 t))))
1285 (if cua-enable-cursor-indications
1286 (cua--update-indications))
72cc582e 1287
01096a7b
KS
1288 (cua--select-keymaps))
1289
1290(defun cua--post-command-handler ()
1291 (when cua-mode
1292 (condition-case nil
1293 (cua--post-command-handler-1)
1294 (error nil))))
72cc582e
KS
1295
1296
1297;;; Keymaps
1298
1638bf54
KS
1299;; Cached value of actual cua-rectangle-modifier-key
1300(defvar cua--rectangle-modifier-key 'meta)
1301
72cc582e
KS
1302(defun cua--M/H-key (map key fct)
1303 ;; bind H-KEY or M-KEY to FCT in MAP
72cc582e 1304 (unless (listp key) (setq key (list key)))
1638bf54 1305 (define-key map (vector (cons cua--rectangle-modifier-key key)) fct))
72cc582e 1306
20023b9c
KS
1307(defun cua--self-insert-char-p (def)
1308 ;; Return DEF if current key sequence is self-inserting in
1309 ;; global-map.
1310 (if (memq (global-key-binding (this-single-command-keys))
1311 '(self-insert-command self-insert-iso))
1312 def nil))
1313
a23a8440
KS
1314(defvar cua-global-keymap (make-sparse-keymap)
1315 "Global keymap for cua-mode; users may add to this keymap.")
1316
72cc582e
KS
1317(defvar cua--cua-keys-keymap (make-sparse-keymap))
1318(defvar cua--prefix-override-keymap (make-sparse-keymap))
1319(defvar cua--prefix-repeat-keymap (make-sparse-keymap))
1320(defvar cua--global-mark-keymap (make-sparse-keymap)) ; Initalized when cua-gmrk.el is loaded
1321(defvar cua--rectangle-keymap (make-sparse-keymap)) ; Initalized when cua-rect.el is loaded
1322(defvar cua--region-keymap (make-sparse-keymap))
1323
1324(defvar cua--ena-cua-keys-keymap nil)
1325(defvar cua--ena-prefix-override-keymap nil)
1326(defvar cua--ena-prefix-repeat-keymap nil)
1327(defvar cua--ena-region-keymap nil)
1328(defvar cua--ena-global-mark-keymap nil)
1329
a23a8440
KS
1330(defvar cua--keymap-alist
1331 `((cua--ena-prefix-override-keymap . ,cua--prefix-override-keymap)
1332 (cua--ena-prefix-repeat-keymap . ,cua--prefix-repeat-keymap)
1333 (cua--ena-cua-keys-keymap . ,cua--cua-keys-keymap)
1334 (cua--ena-global-mark-keymap . ,cua--global-mark-keymap)
1335 (cua--rectangle . ,cua--rectangle-keymap)
1336 (cua--ena-region-keymap . ,cua--region-keymap)
1337 (cua-mode . ,cua-global-keymap)))
1338
1339(defun cua--select-keymaps ()
1340 ;; Setup conditions for selecting the proper keymaps in cua--keymap-alist.
72cc582e
KS
1341 (setq cua--ena-region-keymap
1342 (and mark-active (not deactivate-mark)))
1343 (setq cua--ena-prefix-override-keymap
1344 (and cua--ena-region-keymap
1345 cua-enable-cua-keys
63e6f5b3 1346 (not cua-inhibit-cua-keys)
72cc582e
KS
1347 (or (eq cua-enable-cua-keys t)
1348 (not cua--explicit-region-start))
1349 (not executing-kbd-macro)
1350 (not cua--prefix-override-timer)))
1351 (setq cua--ena-prefix-repeat-keymap
1352 (and cua--ena-region-keymap
186bccc3
KS
1353 (or (timerp cua--prefix-override-timer)
1354 (eq cua--prefix-override-timer 'shift))))
72cc582e
KS
1355 (setq cua--ena-cua-keys-keymap
1356 (and cua-enable-cua-keys
63e6f5b3 1357 (not cua-inhibit-cua-keys)
72cc582e
KS
1358 (or (eq cua-enable-cua-keys t)
1359 cua--last-region-shifted)))
1360 (setq cua--ena-global-mark-keymap
1361 (and cua--global-mark-active
1362 (not (window-minibuffer-p)))))
1363
1364(defvar cua--keymaps-initalized nil)
1365
186bccc3
KS
1366(defun cua--shift-control-prefix (prefix arg)
1367 ;; handle S-C-x and S-C-c by emulating the fast double prefix function.
1368 ;; Don't record this command
1369 (setq this-command last-command)
1370 ;; Restore the prefix arg
1371 (setq prefix-arg arg)
1372 (reset-this-command-lengths)
1373 ;; Activate the cua--prefix-repeat-keymap
1374 (setq cua--prefix-override-timer 'shift)
1375 ;; Push duplicate keys back on the event queue
1376 (setq unread-command-events (cons prefix (cons prefix unread-command-events))))
1377
1378(defun cua--shift-control-c-prefix (arg)
1379 (interactive "P")
1380 (cua--shift-control-prefix ?\C-c arg))
1381
1382(defun cua--shift-control-x-prefix (arg)
1383 (interactive "P")
1384 (cua--shift-control-prefix ?\C-x arg))
1385
72cc582e 1386(defun cua--init-keymaps ()
1638bf54
KS
1387 ;; Cache actual rectangle modifier key.
1388 (setq cua--rectangle-modifier-key
1389 (if (and cua-rectangle-modifier-key
1390 (memq window-system '(x)))
1391 cua-rectangle-modifier-key
1392 'meta))
1393 ;; C-return always toggles rectangle mark
1cb225da 1394 (define-key cua-global-keymap cua-rectangle-mark-key 'cua-set-rectangle-mark)
1638bf54
KS
1395 (unless (eq cua--rectangle-modifier-key 'meta)
1396 (cua--M/H-key cua-global-keymap ?\s 'cua-set-rectangle-mark)
1397 (define-key cua-global-keymap
1398 (vector (list cua--rectangle-modifier-key 'mouse-1)) 'cua-mouse-set-rectangle-mark))
72cc582e 1399
1023b169 1400 (define-key cua-global-keymap [(shift control ?\s)] 'cua-toggle-global-mark)
72cc582e
KS
1401
1402 ;; replace region with rectangle or element on kill ring
1403 (define-key cua-global-keymap [remap yank] 'cua-paste)
1404 (define-key cua-global-keymap [remap clipboard-yank] 'cua-paste)
1405 ;; replace current yank with previous kill ring element
1406 (define-key cua-global-keymap [remap yank-pop] 'cua-paste-pop)
1407 ;; set mark
1408 (define-key cua-global-keymap [remap set-mark-command] 'cua-set-mark)
72cc582e 1409
82851d10
KS
1410 ;; scrolling
1411 (define-key cua-global-keymap [remap scroll-up] 'cua-scroll-up)
1412 (define-key cua-global-keymap [remap scroll-down] 'cua-scroll-down)
1413
72cc582e 1414 (define-key cua--cua-keys-keymap [(control x) timeout] 'kill-region)
72cc582e 1415 (define-key cua--cua-keys-keymap [(control c) timeout] 'copy-region-as-kill)
72cc582e
KS
1416 (define-key cua--cua-keys-keymap [(control z)] 'undo)
1417 (define-key cua--cua-keys-keymap [(control v)] 'yank)
34a63289 1418 (define-key cua--cua-keys-keymap [(meta v)] 'cua-repeat-replace-region)
72cc582e
KS
1419 (define-key cua--cua-keys-keymap [remap exchange-point-and-mark] 'cua-exchange-point-and-mark)
1420
1421 (define-key cua--prefix-override-keymap [(control x)] 'cua--prefix-override-handler)
1422 (define-key cua--prefix-override-keymap [(control c)] 'cua--prefix-override-handler)
a1506d29 1423
72cc582e
KS
1424 (define-key cua--prefix-repeat-keymap [(control x) (control x)] 'cua--prefix-repeat-handler)
1425 (define-key cua--prefix-repeat-keymap [(control x) up] 'cua--prefix-cut-handler)
1426 (define-key cua--prefix-repeat-keymap [(control x) down] 'cua--prefix-cut-handler)
1427 (define-key cua--prefix-repeat-keymap [(control x) left] 'cua--prefix-cut-handler)
1428 (define-key cua--prefix-repeat-keymap [(control x) right] 'cua--prefix-cut-handler)
1429 (define-key cua--prefix-repeat-keymap [(control c) (control c)] 'cua--prefix-repeat-handler)
1430 (define-key cua--prefix-repeat-keymap [(control c) up] 'cua--prefix-copy-handler)
1431 (define-key cua--prefix-repeat-keymap [(control c) down] 'cua--prefix-copy-handler)
1432 (define-key cua--prefix-repeat-keymap [(control c) left] 'cua--prefix-copy-handler)
1433 (define-key cua--prefix-repeat-keymap [(control c) right] 'cua--prefix-copy-handler)
1434
a1506d29 1435 ;; Enable shifted fallbacks for C-x and C-c when region is active
186bccc3
KS
1436 (define-key cua--region-keymap [(shift control x)] 'cua--shift-control-x-prefix)
1437 (define-key cua--region-keymap [(shift control c)] 'cua--shift-control-c-prefix)
1438
72cc582e
KS
1439 ;; replace current region
1440 (define-key cua--region-keymap [remap self-insert-command] 'cua-replace-region)
1441 (define-key cua--region-keymap [remap self-insert-iso] 'cua-replace-region)
1442 (define-key cua--region-keymap [remap insert-register] 'cua-replace-region)
1443 (define-key cua--region-keymap [remap newline-and-indent] 'cua-replace-region)
1444 (define-key cua--region-keymap [remap newline] 'cua-replace-region)
1445 (define-key cua--region-keymap [remap open-line] 'cua-replace-region)
1446 ;; delete current region
1447 (define-key cua--region-keymap [remap delete-backward-char] 'cua-delete-region)
1448 (define-key cua--region-keymap [remap backward-delete-char] 'cua-delete-region)
1449 (define-key cua--region-keymap [remap backward-delete-char-untabify] 'cua-delete-region)
1450 (define-key cua--region-keymap [remap delete-char] 'cua-delete-region)
1451 ;; kill region
1452 (define-key cua--region-keymap [remap kill-region] 'cua-cut-region)
6a350b06 1453 (define-key cua--region-keymap [remap clipboard-kill-region] 'cua-cut-region)
72cc582e
KS
1454 ;; copy region
1455 (define-key cua--region-keymap [remap copy-region-as-kill] 'cua-copy-region)
1456 (define-key cua--region-keymap [remap kill-ring-save] 'cua-copy-region)
6a350b06 1457 (define-key cua--region-keymap [remap clipboard-kill-ring-save] 'cua-copy-region)
72cc582e
KS
1458 ;; cancel current region/rectangle
1459 (define-key cua--region-keymap [remap keyboard-escape-quit] 'cua-cancel)
1460 (define-key cua--region-keymap [remap keyboard-quit] 'cua-cancel)
1461 )
1462
4905133f
KS
1463
1464;; Setup standard movement commands to be recognized by CUA.
1465
1466(dolist (cmd
1467 '(forward-char backward-char
1468 next-line previous-line
1469 forward-word backward-word
1470 end-of-line beginning-of-line
bab88420 1471 move-end-of-line move-beginning-of-line
4905133f
KS
1472 end-of-buffer beginning-of-buffer
1473 scroll-up scroll-down
72662103
KS
1474 up-list down-list backward-up-list
1475 end-of-defun beginning-of-defun
1476 forward-sexp backward-sexp
1477 forward-list backward-list
4905133f
KS
1478 forward-sentence backward-sentence
1479 forward-paragraph backward-paragraph))
1480 (put cmd 'CUA 'move))
1481
cadc926b
KS
1482;; State prior to enabling cua-mode
1483;; Value is a list with the following elements:
1484;; transient-mark-mode
1485;; delete-selection-mode
1486;; pc-selection-mode
1487
1488(defvar cua--saved-state nil)
72cc582e
KS
1489
1490;;;###autoload
80d9508a 1491(define-minor-mode cua-mode
72cc582e 1492 "Toggle CUA key-binding mode.
3685c8a4
KS
1493When enabled, using shifted movement keys will activate the
1494region (and highlight the region using `transient-mark-mode'),
1495and typed text replaces the active selection.
1496
1497Also when enabled, you can use C-z, C-x, C-c, and C-v to undo,
1498cut, copy, and paste in addition to the normal Emacs bindings.
1499The C-x and C-c keys only do cut and copy when the region is
1500active, so in most cases, they do not conflict with the normal
1501function of these prefix keys.
1502
1503If you really need to perform a command which starts with one of
1504the prefix keys even when the region is active, you have three
1505options:
1506- press the prefix key twice very quickly (within 0.2 seconds),
1023b169 1507- press the prefix key and the following key within 0.2 seconds, or
3685c8a4
KS
1508- use the SHIFT key with the prefix key, i.e. C-S-x or C-S-c.
1509
1510You can customize `cua-enable-cua-keys' to completely disable the
1511CUA bindings, or `cua-prefix-override-inhibit-delay' to change
2b3726c0
KS
1512the prefix fallback behavior.
1513
c36f1e67
LT
1514CUA mode manages Transient Mark mode internally. Trying to disable
1515Transient Mark mode while CUA mode is enabled does not work; if you
2b3726c0
KS
1516only want to highlight the region when it is selected using a
1517shifted movement key, set `cua-highlight-region-shift-only'."
80d9508a 1518 :global t
ca0f8d34 1519 :group 'cua
1cb225da
KS
1520 :set-after '(cua-enable-modeline-indications
1521 cua-rectangle-mark-key cua-rectangle-modifier-key)
80d9508a
SM
1522 :require 'cua-base
1523 :link '(emacs-commentary-link "cua-base.el")
72cc582e
KS
1524 (setq mark-even-if-inactive t)
1525 (setq highlight-nonselected-windows nil)
72cc582e
KS
1526
1527 (unless cua--keymaps-initalized
1528 (cua--init-keymaps)
1529 (setq cua--keymaps-initalized t))
1530
1531 (if cua-mode
1532 (progn
1533 (add-hook 'pre-command-hook 'cua--pre-command-handler)
1534 (add-hook 'post-command-hook 'cua--post-command-handler)
1535 (if (and cua-enable-modeline-indications (not (assoc 'cua-mode minor-mode-alist)))
1536 (setq minor-mode-alist (cons '(cua-mode cua--status-string) minor-mode-alist)))
2ed2415d
KS
1537 (if cua-enable-cursor-indications
1538 (cua--update-indications)))
1539
72cc582e
KS
1540 (remove-hook 'pre-command-hook 'cua--pre-command-handler)
1541 (remove-hook 'post-command-hook 'cua--post-command-handler))
a23a8440
KS
1542
1543 (if (not cua-mode)
1544 (setq emulation-mode-map-alists (delq 'cua--keymap-alist emulation-mode-map-alists))
1a2f4b9f 1545 (add-to-ordered-list 'emulation-mode-map-alists 'cua--keymap-alist 400)
a23a8440
KS
1546 (cua--select-keymaps))
1547
cadc926b
KS
1548 (cond
1549 (cua-mode
1550 (setq cua--saved-state
1551 (list
1552 transient-mark-mode
1553 (and (boundp 'delete-selection-mode) delete-selection-mode)
1554 (and (boundp 'pc-selection-mode) pc-selection-mode)))
1555 (if (and (boundp 'delete-selection-mode) delete-selection-mode)
d7672cf8 1556 (delete-selection-mode -1))
cadc926b 1557 (if (and (boundp 'pc-selection-mode) pc-selection-mode)
d7672cf8 1558 (pc-selection-mode -1))
ef2887a2 1559 (cua--deactivate)
cadc926b
KS
1560 (setq transient-mark-mode (and cua-mode
1561 (if cua-highlight-region-shift-only
1562 (not cua--explicit-region-start)
80d9508a 1563 t))))
cadc926b
KS
1564 (cua--saved-state
1565 (setq transient-mark-mode (car cua--saved-state))
1566 (if (nth 1 cua--saved-state)
1567 (delete-selection-mode 1))
1568 (if (nth 2 cua--saved-state)
1569 (pc-selection-mode 1))
1570 (if (interactive-p)
1571 (message "CUA mode disabled.%s%s%s%s"
1572 (if (nth 1 cua--saved-state) " Delete-Selection" "")
1573 (if (and (nth 1 cua--saved-state) (nth 2 cua--saved-state)) " and" "")
1574 (if (nth 2 cua--saved-state) " PC-Selection" "")
1575 (if (or (nth 1 cua--saved-state) (nth 2 cua--saved-state)) " enabled" "")))
80d9508a 1576 (setq cua--saved-state nil))))
72cc582e 1577
01096a7b
KS
1578
1579;;;###autoload
1580(defun cua-selection-mode (arg)
1581 "Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings."
1582 (interactive "P")
1583 (setq-default cua-enable-cua-keys nil)
1584 (cua-mode arg))
1585
1586
72cc582e 1587(defun cua-debug ()
c77d7c92 1588 "Toggle CUA debugging."
72cc582e
KS
1589 (interactive)
1590 (setq cua--debug (not cua--debug)))
1591
06f8e605 1592;; Install run-time check for older versions of CUA-mode which does not
bf247b6e 1593;; work with GNU Emacs version 22.1 and newer.
06f8e605
KS
1594;;
1595;; Except for version 1.2, all of the 1.x and 2.x version of cua-mode
1596;; provided the `CUA-mode' feature. Since this is no longer true,
1597;; we can warn the user if the `CUA-mode' feature is ever provided.
1598
1599;;;###autoload (eval-after-load 'CUA-mode
1600;;;###autoload '(error (concat "\n\n"
398d70ce
KS
1601;;;###autoload "CUA-mode is now part of the standard GNU Emacs distribution, so you may\n"
1602;;;###autoload "now enable CUA via the Options menu or by customizing option `cua-mode'.\n\n"
8736f4c2
KS
1603;;;###autoload "You have loaded an older version of CUA-mode which does\n"
1604;;;###autoload "not work correctly with this version of GNU Emacs.\n\n"
1934f529 1605;;;###autoload (if user-init-file (concat
06f8e605 1606;;;###autoload "To correct this, remove the loading and customization of the\n"
8736f4c2 1607;;;###autoload "old version from the " user-init-file " file.\n\n")))))
06f8e605 1608
f1cb14f8
KS
1609(provide 'cua)
1610
ab5796a9 1611;;; arch-tag: 21fb6289-ba25-4fee-bfdc-f9fb351acf05
72cc582e 1612;;; cua-base.el ends here