(cua--prefix-arg): Make register prefixes
[bpt/emacs.git] / lisp / emulation / cua-base.el
1 ;;; cua-base.el --- emulate CUA key bindings
2
3 ;; Copyright (C) 1997-2002 Free Software Foundation, Inc.
4
5 ;; Author: Kim F. Storm <storm@cua.dk>
6 ;; Keywords: keyboard emulation convenience cua
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25
26 ;;; Commentary:
27
28 ;; This is the CUA package which provides a complete emulation of the
29 ;; standard CUA key bindings (Motif/Windows/Mac GUI) for selecting and
30 ;; manipulating the region where S-<movement> is used to highlight &
31 ;; extend the region.
32
33 ;; CUA style key bindings for cut and paste
34 ;; ----------------------------------------
35
36 ;; This package allows the C-z, C-x, C-c, and C-v keys to be
37 ;; bound appropriately according to the Motif/Windows GUI, i.e.
38 ;; C-z -> undo
39 ;; C-x -> cut
40 ;; C-c -> copy
41 ;; C-v -> paste
42 ;;
43 ;; The tricky part is the handling of the C-x and C-c keys which
44 ;; are normally used as prefix keys for most of emacs' built-in
45 ;; commands. With CUA they still do!!!
46 ;;
47 ;; Only when the region is currently active (and highlighted since
48 ;; transient-mark-mode is used), the C-x and C-c keys will work as CUA
49 ;; keys
50 ;; C-x -> cut
51 ;; C-c -> copy
52 ;; When the region is not active, C-x and C-c works as prefix keys!
53 ;;
54 ;; This probably sounds strange and difficult to get used to - but
55 ;; based on my own experience and the feedback from many users of
56 ;; this package, it actually works very well and users adapt to it
57 ;; instantly - or at least very quickly. So give it a try!
58 ;; ... and in the few cases where you make a mistake and accidentally
59 ;; delete the region - you just undo the mistake (with C-z).
60 ;;
61 ;; If you really need to perform a command which starts with one of
62 ;; the prefix keys even when the region is active, you have three options:
63 ;; - press the prefix key twice very quickly (within 0.2 seconds),
64 ;; - press the prefix key and the following key within 0.2 seconds), or
65 ;; - use the SHIFT key with the prefix key, i.e. C-X or C-C
66 ;;
67 ;; This behaviour can be customized via the
68 ;; cua-prefix-override-inhibit-delay variable.
69
70 ;; In addition to using the shifted movement keys, you can also use
71 ;; [C-space] to start the region and use unshifted movement keys to extend
72 ;; it. To cancel the region, use [C-space] or [C-g].
73
74 ;; If you prefer to use the standard emacs cut, copy, paste, and undo
75 ;; bindings, customize cua-enable-cua-keys to nil.
76
77
78 ;; Typing text replaces the region
79 ;; -------------------------------
80
81 ;; When the region is active, i.e. highlighted, the text in region is
82 ;; replaced by the text you type.
83
84 ;; The replaced text is saved in register 0 which can be inserted using
85 ;; the key sequence M-0 C-v (see the section on register support below).
86
87 ;; If you have just replaced a highlighted region with typed text,
88 ;; you can repeat the replace with M-v. This will search forward
89 ;; for a streach of text identical to the previous contents of the
90 ;; region (i.e. the contents of register 0) and replace it with the
91 ;; text you typed to replace the original region. Repeating M-v will
92 ;; replace the next matching region and so on.
93 ;;
94 ;; Example: Suppose you have a line like this
95 ;; The redo operation will redo the last redoable command
96 ;; which you want to change into
97 ;; The repeat operation will repeat the last repeatable command
98 ;; This is done by highlighting the first occurrence of "redo"
99 ;; and type "repeat" M-v M-v.
100
101 ;; Note: Since CUA-mode duplicates the functionality of the
102 ;; delete-selection-mode, that mode is automatically disabled when
103 ;; CUA-mode is enabled.
104
105
106 ;; CUA mode indications
107 ;; --------------------
108 ;; You can choose to let CUA use different cursor colors to indicate
109 ;; overwrite mode and read-only buffers. For example, the following
110 ;; setting will use a RED cursor in normal (insertion) mode in
111 ;; read-write buffers, a YELLOW cursor in overwrite mode in read-write
112 ;; buffers, and a GREEN cursor read-only buffers:
113 ;;
114 ;; (setq cua-normal-cursor-color "red")
115 ;; (setq cua-overwrite-cursor-color "yellow")
116 ;; (setq cua-read-only-cursor-color "green")
117 ;;
118
119 ;; CUA register support
120 ;; --------------------
121 ;; Emacs' standard register support is also based on a separate set of
122 ;; "register commands".
123 ;;
124 ;; CUA's register support is activated by providing a numeric
125 ;; prefix argument to the C-x, C-c, and C-v commands. For example,
126 ;; to copy the selected region to register 2, enter [M-2 C-c].
127 ;; Or if you have activated the keypad prefix mode, enter [kp-2 C-c].
128 ;;
129 ;; And CUA will copy and paste normal region as well as rectangles
130 ;; into the registers, i.e. you use exactly the same command for both.
131 ;;
132 ;; In addition, the last highlighted text that is deleted (not
133 ;; copied), e.g. by [delete] or by typing text over a highlighted
134 ;; region, is automatically saved in register 0, so you can insert it
135 ;; using [M-0 C-v].
136
137 ;; CUA rectangle support
138 ;; ---------------------
139 ;; Emacs' normal rectangle support is based on interpreting the region
140 ;; between the mark and point as a "virtual rectangle", and using a
141 ;; completely separate set of "rectangle commands" [C-x r ...] on the
142 ;; region to copy, kill, fill a.s.o. the virtual rectangle.
143 ;;
144 ;; cua-mode's superior rectangle support is based on using a true visual
145 ;; representation of the selected rectangle. To start a rectangle, use
146 ;; [S-return] and extend it using the normal movement keys (up, down,
147 ;; left, right, home, end, C-home, C-end). Once the rectangle has the
148 ;; desired size, you can cut or copy it using C-x and C-c (or C-w and M-w),
149 ;; and you can subsequently insert it - as a rectangle - using C-v (or
150 ;; C-y). So the only new command you need to know to work with
151 ;; cua-mode rectangles is S-return!
152 ;;
153 ;; Normally, when you paste a rectangle using C-v (C-y), each line of
154 ;; the rectangle is inserted into the existing lines in the buffer.
155 ;; If overwrite-mode is active when you paste a rectangle, it is
156 ;; inserted as normal (multi-line) text.
157 ;;
158 ;; Furthermore, cua-mode's rectangles are not limited to the actual
159 ;; contents of the buffer, so if the cursor is currently at the end of a
160 ;; short line, you can still extend the rectangle to include more columns
161 ;; of longer lines in the same rectangle. Sounds strange? Try it!
162 ;;
163 ;; You can enable padding for just this rectangle by pressing [M-p];
164 ;; this works like entering `picture-mode' where the tabs and spaces
165 ;; are automatically converted/inserted to make the rectangle truly
166 ;; rectangular. Or you can do it for all rectangles by setting the
167 ;; `cua-auto-expand-rectangles' variable.
168
169 ;; And there's more: If you want to extend or reduce the size of the
170 ;; rectangle in one of the other corners of the rectangle, just use
171 ;; [return] to move the cursor to the "next" corner. Or you can use
172 ;; the [M-up], [M-down], [M-left], and [M-right] keys to move the
173 ;; entire rectangle overlay (but not the contents) in the given
174 ;; direction.
175 ;;
176 ;; [S-return] cancels the rectangle
177 ;; [C-space] activates the region bounded by the rectangle
178
179 ;; If you type a normal (self-inserting) character when the rectangle is
180 ;; active, the character is inserted on the "current side" of every line
181 ;; of the rectangle. The "current side" is the side on which the cursor
182 ;; is currently located. If the rectangle is only 1 column wide,
183 ;; insertion will be performed to the left when the cursor is at the
184 ;; bottom of the rectangle. So, for example, to comment out an entire
185 ;; paragraph like this one, just place the cursor on the first character
186 ;; of the first line, and enter the following:
187 ;; S-return M-} ; ; <space> S-return
188
189 ;; cua-mode's rectangle support also includes all the normal rectangle
190 ;; functions with easy access:
191 ;;
192 ;; [M-a] aligns all words at the left edge of the rectangle
193 ;; [M-b] fills the rectangle with blanks (tabs and spaces)
194 ;; [M-c] closes the rectangle by removing all blanks at the left edge
195 ;; of the rectangle
196 ;; [M-f] fills the rectangle with a single character (prompt)
197 ;; [M-i] increases the first number found on each line of the rectangle
198 ;; by the amount given by the numeric prefix argument (default 1)
199 ;; It recognizes 0x... as hexadecimal numbers
200 ;; [M-k] kills the rectangle as normal multi-line text (for paste)
201 ;; [M-l] downcases the rectangle
202 ;; [M-m] copies the rectangle as normal multi-line text (for paste)
203 ;; [M-n] fills each line of the rectangle with increasing numbers using
204 ;; a supplied format string (prompt)
205 ;; [M-o] opens the rectangle by moving the highlighted text to the
206 ;; right of the rectangle and filling the rectangle with blanks.
207 ;; [M-p] toggles rectangle padding, i.e. insert tabs and spaces to
208 ;; make rectangles truly rectangular
209 ;; [M-q] performs text filling on the rectangle
210 ;; [M-r] replaces REGEXP (prompt) by STRING (prompt) in rectangle
211 ;; [M-R] reverse the lines in the rectangle
212 ;; [M-s] fills each line of the rectangle with the same STRING (prompt)
213 ;; [M-t] performs text fill of the rectangle with TEXT (prompt)
214 ;; [M-u] upcases the rectangle
215 ;; [M-|] runs shell command on rectangle
216 ;; [M-'] restricts rectangle to lines with CHAR (prompt) at left column
217 ;; [M-/] restricts rectangle to lines matching REGEXP (prompt)
218 ;; [C-?] Shows a brief list of the above commands.
219
220 ;; [M-C-up] and [M-C-down] scrolls the lines INSIDE the rectangle up
221 ;; and down; lines scrolled outside the top or bottom of the rectangle
222 ;; are lost, but can be recovered using [C-z].
223
224 ;; CUA Global Mark
225 ;; ---------------
226 ;; The final feature provided by CUA is the "global mark", which
227 ;; makes it very easy to copy bits and pieces from the same and other
228 ;; files into the current text. To enable and cancel the global mark,
229 ;; use [S-C-space]. The cursor will blink when the global mark
230 ;; is active. The following commands behave differently when the global
231 ;; mark is set:
232 ;; <ch> All characters (including newlines) you type are inserted
233 ;; at the global mark!
234 ;; [C-x] If you cut a region or rectangle, it is automatically inserted
235 ;; at the global mark, and the global mark is advanced.
236 ;; [C-c] If you copy a region or rectangle, it is immediately inserted
237 ;; at the global mark, and the global mark is advanced.
238 ;; [C-v] Copies a single character to the global mark.
239 ;; [C-d] Moves (i.e. deletes and inserts) a single character to the
240 ;; global mark.
241 ;; [backspace] deletes the character before the global mark, while
242 ;; [delete] deltes the character after the global mark.
243
244 ;; [S-C-space] Jumps to and cancels the global mark.
245 ;; [C-u S-C-space] Cancels the global mark (stays in current buffer).
246
247 ;; [TAB] Indents the current line or rectangle to the column of the
248 ;; global mark.
249
250 ;;; Code:
251
252 ;;; Customization
253
254 (defgroup cua nil
255 "Emulate CUA key bindings including C-x and C-c."
256 :prefix "cua"
257 :group 'editing-basics
258 :group 'convenience
259 :group 'emulations
260 :link '(emacs-commentary-link :tag "Commentary" "cua-base.el")
261 :link '(emacs-library-link :tag "Lisp File" "cua-base.el"))
262
263 ;;;###autoload
264 (defcustom cua-mode nil
265 "Non-nil means that CUA emulation mode is enabled.
266 In CUA mode, shifted movement keys highlight and extend the region.
267 When a region is highlighted, the binding of the C-x and C-c keys are
268 temporarily changed to work as Motif, MAC or MS-Windows cut and paste.
269 Also, insertion commands first delete the region and then insert.
270 This mode enables Transient Mark mode and it provides a superset of the
271 PC Selection Mode and Delete Selection Modes.
272
273 Setting this variable directly does not take effect;
274 use either \\[customize] or the function `cua-mode'."
275 :set (lambda (symbol value)
276 (cua-mode (or value 0)))
277 :initialize 'custom-initialize-default
278 :set-after '(cua-enable-modeline-indications cua-use-hyper-key)
279 :require 'cua-base
280 :link '(emacs-commentary-link "cua-base.el")
281 :version "21.4"
282 :type 'boolean
283 :group 'cua)
284
285
286 (defcustom cua-enable-cua-keys t
287 "*Enable using C-z, C-x, C-c, and C-v for undo, cut, copy, and paste.
288 If the value is t, these mappings are always enabled. If the value is
289 'shift, these keys are only enabled if the last region was marked with
290 a shifted movement key. If the value is nil, these keys are never
291 enabled."
292 :type '(choice (const :tag "Disabled" nil)
293 (const :tag "Shift region only" shift)
294 (other :tag "Enabled" t))
295 :group 'cua)
296
297 (defcustom cua-highlight-region-shift-only nil
298 "*If non-nil, only highlight region if marked with S-<move>.
299 When this is non-nil, CUA toggles `transient-mark-mode' on when the region
300 is marked using shifted movement keys, and off when the mark is cleared.
301 But when the mark was set using \\[cua-set-mark], transient-mark-mode
302 is not turned on."
303 :type 'boolean
304 :group 'cua)
305
306 (defcustom cua-prefix-override-inhibit-delay
307 (if (featurep 'lisp-float-type) (/ (float 1) (float 5)) nil)
308 "*If non-nil, time in seconds to delay before overriding prefix key.
309 If there is additional input within this time, the prefix key is
310 used as a normal prefix key. So typing a key sequence quickly will
311 inhibit overriding the prefix key.
312 As a special case, if the prefix keys repeated within this time, the
313 first prefix key is discarded, so typing a prefix key twice in quick
314 succession will also inhibit overriding the prefix key.
315 If the value is nil, use a shifted prefix key to inhibit the override."
316 :type '(choice (number :tag "Inhibit delay")
317 (const :tag "No delay" nil))
318 :group 'cua)
319
320 (defcustom cua-keep-region-after-copy nil
321 "If non-nil, don't deselect the region after copying."
322 :type 'boolean
323 :group 'cua)
324
325 (defcustom cua-enable-register-prefix 'not-ctrl-u
326 "*If non-nil, registers are supported via numeric prefix arg.
327 If the value is t, any numeric prefix arg in the range 0 to 9 will be
328 interpreted as a register number.
329 If the value is not-ctrl-u, using C-u to enter a numeric prefix is not
330 interpreted as a register number.
331 If the value is ctrl-u-only, only numeric prefix entered with C-u is
332 interpreted as a register number."
333 :type '(choice (const :tag "Disabled" nil)
334 (const :tag "Enabled, but C-u arg is not a register" not-ctrl-u)
335 (const :tag "Enabled, but only for C-u arg" ctrl-u-only)
336 (other :tag "Enabled" t))
337 :group 'cua)
338
339 (defcustom cua-delete-copy-to-register-0 t
340 "*If non-nil, save last deleted region or rectangle to register 0."
341 :type 'boolean
342 :group 'cua)
343
344 (defcustom cua-use-hyper-key nil
345 "*If non-nil, bind rectangle commands to H-? instead of M-?.
346 If set to 'also, toggle region command is also on S-return.
347 Must be set prior to enabling CUA."
348 :type '(choice (const :tag "Meta key and S-return" nil)
349 (const :tag "Hyper key only" only)
350 (const :tag "Hyper key and S-return" also))
351 :group 'cua)
352
353 (defcustom cua-enable-region-auto-help nil
354 "*If non-nil, automatically show help for active region."
355 :type 'boolean
356 :group 'cua)
357
358 (defcustom cua-enable-modeline-indications nil
359 "*If non-nil, use minor-mode hook to show status in mode line."
360 :type 'boolean
361 :group 'cua)
362
363 (defcustom cua-check-pending-input t
364 "*If non-nil, don't override prefix key if input pending.
365 It is rumoured that input-pending-p is unreliable under some window
366 managers, so try setting this to nil, if prefix override doesn't work."
367 :type 'boolean
368 :group 'cua)
369
370
371 ;;; Rectangle Customization
372
373 (defcustom cua-auto-expand-rectangles nil
374 "*If non-nil, rectangles are padded with spaces to make straight edges.
375 This implies modifying buffer contents by expanding tabs and inserting spaces.
376 Consequently, this is inhibited in read-only buffers.
377 Can be toggled by [M-p] while the rectangle is active,"
378 :type 'boolean
379 :group 'cua)
380
381 (defcustom cua-enable-rectangle-auto-help t
382 "*If non-nil, automatically show help for region, rectangle and global mark."
383 :type 'boolean
384 :group 'cua)
385
386 (defface cua-rectangle-face 'nil
387 "*Font used by CUA for highlighting the rectangle."
388 :group 'cua)
389
390 (defface cua-rectangle-noselect-face 'nil
391 "*Font used by CUA for highlighting the non-selected rectangle lines."
392 :group 'cua)
393
394 (defcustom cua-undo-max 64
395 "*Max no of undoable CUA rectangle changes (including undo)."
396 :type 'integer
397 :group 'cua)
398
399
400 ;;; Global Mark Customization
401
402 (defcustom cua-global-mark-keep-visible t
403 "*If non-nil, always keep global mark visible in other window."
404 :type 'boolean
405 :group 'cua)
406
407 (defface cua-global-mark-face '((((class color))
408 (:foreground "black")
409 (:background "yellow"))
410 (t (:bold t)))
411 "*Font used by CUA for highlighting the global mark."
412 :group 'cua)
413
414 (defcustom cua-global-mark-blink-cursor-interval 0.20
415 "*Blink cursor at this interval when global mark is active."
416 :type '(choice (number :tag "Blink interval")
417 (const :tag "No blink" nil))
418 :group 'cua)
419
420
421 ;;; Cursor Indication Customization
422
423 (defcustom cua-enable-cursor-indications nil
424 "*If non-nil, use different cursor colors for indications."
425 :type 'boolean
426 :group 'cua)
427
428 (defcustom cua-normal-cursor-color nil
429 "Normal (non-overwrite) cursor color.
430 Also used to indicate that rectangle padding is not in effect.
431 Automatically loaded from frame parameters, if nil."
432 :initialize (lambda (symbol value)
433 (set symbol (or value
434 (and (boundp 'initial-cursor-color) initial-cursor-color)
435 (and (boundp 'initial-frame-alist)
436 (assoc 'cursor-color initial-frame-alist)
437 (cdr (assoc 'cursor-color initial-frame-alist)))
438 (and (boundp 'default-frame-alist)
439 (assoc 'cursor-color default-frame-alist)
440 (cdr (assoc 'cursor-color default-frame-alist)))
441 (frame-parameter nil 'cursor-color))))
442 :type 'color
443 :group 'cua)
444
445 (defcustom cua-read-only-cursor-color "darkgreen"
446 "*Cursor color used in read-only buffers, if non-nil."
447 :type 'color
448 :group 'cua)
449
450 (defcustom cua-overwrite-cursor-color "yellow"
451 "*Cursor color used when overwrite mode is set, if non-nil.
452 Also used to indicate that rectangle padding is in effect."
453 :type 'color
454 :group 'cua)
455
456 (defcustom cua-global-mark-cursor-color "cyan"
457 "*Indication for active global mark.
458 Will change cursor color to specified color if string."
459 :type 'color
460 :group 'cua)
461
462
463 ;;; Rectangle support is in cua-rect.el
464
465 (autoload 'cua-set-rectangle-mark "cua-rect" nil t nil)
466
467 ;; Stub definitions until it is loaded
468
469 (when (not (featurep 'cua-rect))
470 (defvar cua--rectangle)
471 (setq cua--rectangle nil)
472 (defvar cua--last-killed-rectangle)
473 (setq cua--last-killed-rectangle nil))
474
475
476
477 ;;; Global Mark support is in cua-gmrk.el
478
479 (autoload 'cua-toggle-global-mark "cua-gmrk.el" nil t nil)
480
481 ;; Stub definitions until cua-gmrk.el is loaded
482
483 (when (not (featurep 'cua-gmrk))
484 (defvar cua--global-mark-active)
485 (setq cua--global-mark-active nil))
486
487
488 (provide 'cua-base)
489
490 (eval-when-compile
491 (require 'cua-rect)
492 (require 'cua-gmrk)
493 )
494
495
496 ;;; Low-level Interface
497
498 (defvar cua-inhibit-cua-keys nil
499 "Buffer-local variable that may disable the cua keymappings.")
500 (make-variable-buffer-local 'cua-inhibit-cua-keys)
501
502 ;;; Aux. variables
503
504 ;; Current region was started using cua-set-mark.
505 (defvar cua--explicit-region-start nil)
506
507 ;; Latest region was started using shifted movement command.
508 (defvar cua--last-region-shifted nil)
509
510 ;; buffer + point prior to current command when rectangle is active
511 ;; checked in post-command hook to see if point was moved
512 (defvar cua--buffer-and-point-before-command nil)
513
514 ;; status string for mode line indications
515 (defvar cua--status-string nil)
516
517 (defvar cua--debug nil)
518
519
520 ;;; Prefix key override mechanism
521
522 ;; The prefix override (when mark-active) operates in three substates:
523 ;; [1] Before using a prefix key
524 ;; [2] Immediately after using a prefix key
525 ;; [3] A fraction of a second later
526
527 ;; In state [1], the cua--prefix-override-keymap is active.
528 ;; This keymap binds the C-x and C-c prefix keys to the
529 ;; cua--prefix-override-handler function.
530
531 ;; When a prefix key is typed in state [1], cua--prefix-override-handler
532 ;; will push back the keys already read to the event queue. If input is
533 ;; pending, it changes directly to state [3]. Otherwise, a short timer [T]
534 ;; is started, and it changes to state [2].
535
536 ;; In state [2], the cua--prefix-override-keymap is inactive. Instead the
537 ;; cua--prefix-repeat-keymap is active. This keymap binds C-c C-c and C-x
538 ;; C-x to the cua--prefix-repeat-handler function.
539
540 ;; If the prefix key is repeated in state [2], cua--prefix-repeat-handler
541 ;; will cancel [T], back the keys already read (except for the second prefix
542 ;; keys) to the event queue, and changes to state [3].
543
544 ;; The basic cua--cua-keys-keymap binds [C-x timeout] to kill-region and
545 ;; [C-c timeout] to copy-region-as-kill, so if [T] times out in state [2],
546 ;; the cua--prefix-override-timeout function will push a `timeout' event on
547 ;; the event queue, and changes to state [3].
548
549 ;; In state [3] both cua--prefix-override-keymap and cua--prefix-repeat-keymap
550 ;; are inactive, so the timeout in cua-global-keymap binding is used, or the
551 ;; normal prefix key binding from the global or local map will be used.
552
553 ;; The pre-command hook (executed as a consequence of the timeout or normal
554 ;; prefix key binding) will cancel [T] and change from state [3] back to
555 ;; state [1]. So cua--prefix-override-handler and cua--prefix-repeat-handler
556 ;; are always called with state reset to [1]!
557
558 ;; State [1] is recognized by cua--prefix-override-timer is nil,
559 ;; state [2] is recognized by cua--prefix-override-timer is a timer, and
560 ;; state [3] is recognized by cua--prefix-override-timer is t.
561
562 (defvar cua--prefix-override-timer nil)
563 (defvar cua--prefix-override-length nil)
564
565 (defun cua--prefix-override-replay (arg repeat)
566 (let* ((keys (this-command-keys))
567 (i (length keys))
568 (key (aref keys (1- i))))
569 (setq cua--prefix-override-length (- i repeat))
570 (setq cua--prefix-override-timer
571 (or
572 ;; In state [2], change to state [3]
573 (> repeat 0)
574 ;; In state [1], change directly to state [3]
575 (and cua-check-pending-input (input-pending-p))
576 ;; In state [1], [T] disabled, so change to state [3]
577 (not (numberp cua-prefix-override-inhibit-delay))
578 (<= cua-prefix-override-inhibit-delay 0)
579 ;; In state [1], start [T] and change to state [2]
580 (run-with-timer cua-prefix-override-inhibit-delay nil
581 'cua--prefix-override-timeout)))
582 ;; Don't record this command
583 (setq this-command last-command)
584 ;; Restore the prefix arg
585 (setq prefix-arg arg)
586 (reset-this-command-lengths)
587 ;; Push the key back on the event queue
588 (setq unread-command-events (cons key unread-command-events))))
589
590 (defun cua--prefix-override-handler (arg)
591 "Start timer waiting for prefix key to be followed by another key.
592 Repeating prefix key when region is active works as a single prefix key."
593 (interactive "P")
594 (cua--prefix-override-replay arg 0))
595
596 (defun cua--prefix-repeat-handler (arg)
597 "Repeating prefix key when region is active works as a single prefix key."
598 (interactive "P")
599 (cua--prefix-override-replay arg 1))
600
601 (defun cua--prefix-copy-handler (arg)
602 "Copy region/rectangle, then replay last key."
603 (interactive "P")
604 (if cua--rectangle
605 (cua-copy-rectangle arg)
606 (cua-copy-region arg))
607 (let ((keys (this-single-command-keys)))
608 (setq unread-command-events
609 (cons (aref keys (1- (length keys))) unread-command-events))))
610
611 (defun cua--prefix-cut-handler (arg)
612 "Cut region/rectangle, then replay last key."
613 (interactive "P")
614 (if cua--rectangle
615 (cua-cut-rectangle arg)
616 (cua-cut-region arg))
617 (let ((keys (this-single-command-keys)))
618 (setq unread-command-events
619 (cons (aref keys (1- (length keys))) unread-command-events))))
620
621 (defun cua--prefix-override-timeout ()
622 (setq cua--prefix-override-timer t)
623 (when (= (length (this-command-keys)) cua--prefix-override-length)
624 (setq unread-command-events (cons 'timeout unread-command-events))
625 (if prefix-arg
626 (reset-this-command-lengths)
627 (setq overriding-terminal-local-map nil))
628 (cua--select-keymaps)))
629
630
631 ;;; Aux. functions
632
633 (defun cua--fallback ()
634 ;; Execute original command
635 (setq this-command this-original-command)
636 (call-interactively this-command))
637
638 (defun cua--keep-active ()
639 (setq mark-active t
640 deactivate-mark nil))
641
642 (defun cua--deactivate (&optional now)
643 (setq cua--explicit-region-start nil)
644 (if (not now)
645 (setq deactivate-mark t)
646 (setq mark-active nil)
647 (run-hooks 'deactivate-mark-hook)))
648
649
650 ;; The current register prefix
651 (defvar cua--register nil)
652
653 (defun cua--prefix-arg (arg)
654 (setq cua--register
655 (and cua-enable-register-prefix
656 (integerp arg) (>= arg 0) (< arg 10)
657 (let* ((prefix (aref (this-command-keys) 0))
658 (ctrl-u-prefix (and (integerp prefix)
659 (= prefix ?\C-u)))))
660 (cond
661 ((eq cua-enable-register-prefix 'not-ctrl-u)
662 (not ctrl-u-prefix))
663 ((eq cua-enable-register-prefix 'ctrl-u-only)
664 ctrl-u-prefix)
665 (t t))
666 (+ arg ?0)))
667 (if cua--register nil arg))
668
669 ;;; Enhanced undo - restore rectangle selections
670
671 (defun cua-undo (&optional arg)
672 "Undo some previous changes.
673 Knows about CUA rectangle highlighting in addition to standard undo."
674 (interactive "*P")
675 (if (fboundp 'cua--rectangle-undo)
676 (cua--rectangle-undo arg)
677 (undo arg)))
678
679 ;;; Region specific commands
680
681 (defvar cua--last-deleted-region-pos nil)
682 (defvar cua--last-deleted-region-text nil)
683
684 (defun cua-delete-region ()
685 "Delete the active region.
686 Save a copy in register 0 if `cua-delete-copy-to-register-0' is non-nil."
687 (interactive)
688 (let ((start (mark)) (end (point)))
689 (or (<= start end)
690 (setq start (prog1 end (setq end start))))
691 (setq cua--last-deleted-region-text (buffer-substring start end))
692 (if cua-delete-copy-to-register-0
693 (set-register ?0 cua--last-deleted-region-text))
694 (delete-region start end)
695 (setq cua--last-deleted-region-pos
696 (cons (current-buffer)
697 (and (consp buffer-undo-list)
698 (car buffer-undo-list))))
699 (cua--deactivate)))
700
701 (defun cua-replace-region ()
702 "Replace the active region with the character you type."
703 (interactive)
704 (cua-delete-region)
705 (unless (eq this-original-command this-command)
706 (cua--fallback)))
707
708 (defun cua-copy-region (arg)
709 "Copy the region to the kill ring.
710 With numeric prefix arg, copy to register 0-9 instead."
711 (interactive "P")
712 (setq arg (cua--prefix-arg arg))
713 (setq cua--last-killed-rectangle nil)
714 (let ((start (mark)) (end (point)))
715 (or (<= start end)
716 (setq start (prog1 end (setq end start))))
717 (if cua--register
718 (copy-to-register cua--register start end nil)
719 (copy-region-as-kill start end))
720 (if cua-keep-region-after-copy
721 (cua--keep-active)
722 (cua--deactivate))))
723
724 (defun cua-cut-region (arg)
725 "Cut the region and copy to the kill ring.
726 With numeric prefix arg, copy to register 0-9 instead."
727 (interactive "P")
728 (setq cua--last-killed-rectangle nil)
729 (if buffer-read-only
730 (cua-copy-region arg)
731 (setq arg (cua--prefix-arg arg))
732 (let ((start (mark)) (end (point)))
733 (or (<= start end)
734 (setq start (prog1 end (setq end start))))
735 (if cua--register
736 (copy-to-register cua--register start end t)
737 (kill-region start end)))
738 (cua--deactivate)))
739
740 ;;; Generic commands for regions, rectangles, and global marks
741
742 (defun cua-cancel ()
743 "Cancel the active region, rectangle, or global mark."
744 (interactive)
745 (setq mark-active nil)
746 (setq cua--explicit-region-start nil)
747 (if (fboundp 'cua--cancel-rectangle)
748 (cua--cancel-rectangle)))
749
750 (defun cua-paste (arg)
751 "Paste last cut or copied region or rectangle.
752 An active region is deleted before executing the command.
753 With numeric prefix arg, paste from register 0-9 instead.
754 If global mark is active, copy from register or one character."
755 (interactive "P")
756 (setq arg (cua--prefix-arg arg))
757 (let ((regtxt (and cua--register (get-register cua--register)))
758 (count (prefix-numeric-value arg)))
759 (cond
760 ((and cua--register (not regtxt))
761 (message "Nothing in register %c" cua--register))
762 (cua--global-mark-active
763 (if regtxt
764 (cua--insert-at-global-mark regtxt)
765 (when (not (eobp))
766 (cua--insert-at-global-mark (buffer-substring (point) (+ (point) count)))
767 (forward-char count))))
768 (buffer-read-only
769 (message "Cannot paste into a read-only buffer"))
770 (t
771 ;; Must save register here, since delete may override reg 0.
772 (if mark-active
773 ;; Before a yank command, make sure we don't yank
774 ;; the same region that we are going to delete.
775 ;; That would make yank a no-op.
776 (if cua--rectangle
777 (cua--delete-rectangle)
778 (if (string= (buffer-substring (point) (mark))
779 (car kill-ring))
780 (current-kill 1))
781 (cua-delete-region)))
782 (cond
783 (regtxt
784 (cond
785 ((consp regtxt) (cua--insert-rectangle regtxt))
786 ((stringp regtxt) (insert-for-yank regtxt))
787 (t (message "Unknown data in register %c" cua--register))))
788 ((and cua--last-killed-rectangle
789 (eq (and kill-ring (car kill-ring)) (car cua--last-killed-rectangle)))
790 (let ((pt (point)))
791 (when (not (eq buffer-undo-list t))
792 (setq this-command 'cua--paste-rectangle)
793 (undo-boundary)
794 (setq buffer-undo-list (cons pt buffer-undo-list)))
795 (cua--insert-rectangle (cdr cua--last-killed-rectangle))
796 (if arg (goto-char pt))))
797 (t (yank arg)))))))
798
799 (defun cua-paste-pop (arg)
800 "Replace a just-pasted text or rectangle with a different text.
801 See `yank-pop' for details."
802 (interactive "P")
803 (if (eq last-command 'cua--paste-rectangle)
804 (progn
805 (undo)
806 (yank arg))
807 (yank-pop (prefix-numeric-value arg))))
808
809 (defun cua-exchange-point-and-mark (arg)
810 "Exchanges point and mark, but don't activate the mark.
811 Activates the mark if a prefix argument is given."
812 (interactive "P")
813 (if arg
814 (setq mark-active t)
815 (let (mark-active)
816 (exchange-point-and-mark)
817 (if cua--rectangle
818 (cua--rectangle-corner 0)))))
819
820 ;; Typed text that replaced the highlighted region.
821 (defvar cua--repeat-replace-text nil)
822
823 (defun cua-repeat-replace-region (arg)
824 "Repeat replacing text of highlighted region with typed text.
825 Searches for the next streach of text identical to the region last
826 replaced by typing text over it and replaces it with the same streach
827 of text."
828 (interactive "P")
829 (when cua--last-deleted-region-pos
830 (save-excursion
831 (save-restriction
832 (set-buffer (car cua--last-deleted-region-pos))
833 (widen)
834 ;; Find the text that replaced the region via the undo list.
835 (let ((ul buffer-undo-list)
836 (elt (cdr cua--last-deleted-region-pos))
837 u s e)
838 (when elt
839 (while (consp ul)
840 (setq u (car ul) ul (cdr ul))
841 (cond
842 ((eq u elt) ;; got it
843 (setq ul nil))
844 ((and (consp u) (integerp (car u)) (integerp (cdr u)))
845 (if (and s (= (cdr u) s))
846 (setq s (car u))
847 (setq s (car u) e (cdr u)))))))
848 (setq cua--repeat-replace-text
849 (cond ((and s e (<= s e) (= s (mark t)))
850 (buffer-substring-no-properties s e))
851 ((and (null s) (eq u elt)) ;; nothing inserted
852 "")
853 (t
854 (message "Cannot locate replacement text")
855 nil))))))
856 (setq cua--last-deleted-region-pos nil))
857 (if (and cua--last-deleted-region-text
858 cua--repeat-replace-text
859 (search-forward cua--last-deleted-region-text nil t nil))
860 (replace-match cua--repeat-replace-text arg t)))
861
862 (defun cua-help-for-region (&optional help)
863 "Show region specific help in echo area."
864 (interactive)
865 (message
866 (concat (if help "C-?:help " "")
867 "C-z:undo C-x:cut C-c:copy C-v:paste S-ret:rect")))
868
869
870 ;;; Shift activated / extended region
871
872 (defun cua-set-mark (&optional arg)
873 "Set mark at where point is, clear mark, or jump to mark.
874 With no prefix argument, set mark, push old mark position on local mark
875 ring, and push mark on global mark ring, or if mark is already set, clear mark.
876 With argument, jump to mark, and pop a new position for mark off the ring;
877 then it jumps to the next mark off the ring if repeated with no argument, or
878 sets the mark at the new position if repeated with argument."
879 (interactive "P")
880 (cond
881 ((eq last-command 'pop-to-mark-command)
882 (if (and (consp arg) (> (prefix-numeric-value arg) 4))
883 (push-mark-command nil)
884 (setq this-command 'pop-to-mark-command)
885 (pop-to-mark-command)))
886 (arg
887 (setq this-command 'pop-to-mark-command)
888 (pop-to-mark-command))
889 (mark-active
890 (cua--deactivate)
891 (message "Mark Cleared"))
892 (t
893 (push-mark-command nil nil)
894 (setq cua--explicit-region-start t)
895 (setq cua--last-region-shifted nil)
896 (if cua-enable-region-auto-help
897 (cua-help-for-region t)))))
898
899 (defvar cua--standard-movement-commands
900 '(forward-char backward-char
901 next-line previous-line
902 forward-word backward-word
903 end-of-line beginning-of-line
904 end-of-buffer beginning-of-buffer
905 scroll-up scroll-down forward-paragraph backward-paragraph)
906 "List of standard movement commands.
907 Extra commands should be added to `cua-user-movement-commands'")
908
909 (defvar cua-movement-commands nil
910 "User may add additional movement commands to this list.")
911
912
913 ;;; Cursor indications
914
915 (defun cua--update-indications ()
916 (let ((cursor
917 (cond
918 ((and cua--global-mark-active
919 (stringp cua-global-mark-cursor-color))
920 cua-global-mark-cursor-color)
921 ((and buffer-read-only
922 (stringp cua-read-only-cursor-color))
923 cua-read-only-cursor-color)
924 ((and (stringp cua-overwrite-cursor-color)
925 (or overwrite-mode
926 (and cua--rectangle (cua--rectangle-padding))))
927 cua-overwrite-cursor-color)
928 (t cua-normal-cursor-color))))
929 (if (and cursor
930 (not (equal cursor (frame-parameter nil 'cursor-color))))
931 (set-cursor-color cursor))
932 cursor))
933
934
935 ;;; Pre-command hook
936
937 (defun cua--pre-command-handler ()
938 (condition-case nil
939 (let ((movement (or (memq this-command cua--standard-movement-commands)
940 (memq this-command cua-movement-commands))))
941
942 ;; Cancel prefix key timeout if user enters another key.
943 (when cua--prefix-override-timer
944 (if (timerp cua--prefix-override-timer)
945 (cancel-timer cua--prefix-override-timer))
946 (setq cua--prefix-override-timer nil))
947
948 ;; Handle shifted cursor keys and other movement commands.
949 ;; If region is not active, region is activated if key is shifted.
950 ;; If region is active, region is cancelled if key is unshifted (and region not started with C-SPC).
951 ;; If rectangle is active, expand rectangle in specified direction and ignore the movement.
952 (if movement
953 (cond
954 ((memq 'shift (event-modifiers (aref (this-single-command-raw-keys) 0)))
955 (unless mark-active
956 (push-mark-command nil t))
957 (setq cua--last-region-shifted t)
958 (setq cua--explicit-region-start nil))
959 ((or cua--explicit-region-start cua--rectangle)
960 (unless mark-active
961 (push-mark-command nil nil)))
962 (t
963 ;; If we set mark-active to nil here, the region highlight will not be
964 ;; removed by the direct_output_ commands.
965 (setq deactivate-mark t)))
966
967 ;; Handle delete-selection property on other commands
968 (if (and mark-active (not deactivate-mark))
969 (let* ((ds (or (get this-command 'delete-selection)
970 (get this-command 'pending-delete)))
971 (nc (cond
972 ((not ds) nil)
973 ((eq ds 'yank)
974 'cua-paste)
975 ((eq ds 'kill)
976 (if cua--rectangle
977 'cua-copy-rectangle
978 'cua-copy-region))
979 ((eq ds 'supersede)
980 (if cua--rectangle
981 'cua-delete-rectangle ;; replace?
982 'cua-replace-region))
983 (t
984 (if cua--rectangle
985 'cua-delete-rectangle
986 'cua-delete-region)))))
987 (if nc
988 (setq this-original-command this-command
989 this-command nc)))))
990
991 ;; Detect extension of rectangles by mouse or other movement
992 (setq cua--buffer-and-point-before-command
993 (if cua--rectangle (cons (current-buffer) (point))))
994 )
995 (error nil)))
996
997 ;;; Post-command hook
998
999 (defun cua--post-command-handler ()
1000 (condition-case nil
1001 (progn
1002 (when cua--global-mark-active
1003 (cua--global-mark-post-command))
1004 (when (fboundp 'cua--rectangle-post-command)
1005 (cua--rectangle-post-command))
1006 (setq cua--buffer-and-point-before-command nil)
1007 (if (or (not mark-active) deactivate-mark)
1008 (setq cua--explicit-region-start nil))
1009
1010 ;; Debugging
1011 (if cua--debug
1012 (cond
1013 (cua--rectangle (cua--rectangle-assert))
1014 (mark-active (message "Mark=%d Point=%d Expl=%s"
1015 (mark t) (point) cua--explicit-region-start))))
1016
1017 ;; Disable transient-mark-mode if rectangle active in current buffer.
1018 (if (not (window-minibuffer-p (selected-window)))
1019 (setq transient-mark-mode (and (not cua--rectangle)
1020 (if cua-highlight-region-shift-only
1021 (not cua--explicit-region-start)
1022 t))))
1023 (if cua-enable-cursor-indications
1024 (cua--update-indications))
1025
1026 (cua--select-keymaps)
1027 )
1028
1029 (error nil)))
1030
1031
1032 ;;; Keymaps
1033
1034 (defun cua--M/H-key (map key fct)
1035 ;; bind H-KEY or M-KEY to FCT in MAP
1036 (if (eq key 'space) (setq key ? ))
1037 (unless (listp key) (setq key (list key)))
1038 (define-key map (vector (cons (if cua-use-hyper-key 'hyper 'meta) key)) fct))
1039
1040 (defun cua--self-insert-char-p (def)
1041 ;; Return DEF if current key sequence is self-inserting in
1042 ;; global-map.
1043 (if (memq (global-key-binding (this-single-command-keys))
1044 '(self-insert-command self-insert-iso))
1045 def nil))
1046
1047 (defvar cua-global-keymap (make-sparse-keymap)
1048 "Global keymap for cua-mode; users may add to this keymap.")
1049
1050 (defvar cua--cua-keys-keymap (make-sparse-keymap))
1051 (defvar cua--prefix-override-keymap (make-sparse-keymap))
1052 (defvar cua--prefix-repeat-keymap (make-sparse-keymap))
1053 (defvar cua--global-mark-keymap (make-sparse-keymap)) ; Initalized when cua-gmrk.el is loaded
1054 (defvar cua--rectangle-keymap (make-sparse-keymap)) ; Initalized when cua-rect.el is loaded
1055 (defvar cua--region-keymap (make-sparse-keymap))
1056
1057 (defvar cua--ena-cua-keys-keymap nil)
1058 (defvar cua--ena-prefix-override-keymap nil)
1059 (defvar cua--ena-prefix-repeat-keymap nil)
1060 (defvar cua--ena-region-keymap nil)
1061 (defvar cua--ena-global-mark-keymap nil)
1062
1063 (defvar cua--keymap-alist
1064 `((cua--ena-prefix-override-keymap . ,cua--prefix-override-keymap)
1065 (cua--ena-prefix-repeat-keymap . ,cua--prefix-repeat-keymap)
1066 (cua--ena-cua-keys-keymap . ,cua--cua-keys-keymap)
1067 (cua--ena-global-mark-keymap . ,cua--global-mark-keymap)
1068 (cua--rectangle . ,cua--rectangle-keymap)
1069 (cua--ena-region-keymap . ,cua--region-keymap)
1070 (cua-mode . ,cua-global-keymap)))
1071
1072 (defun cua--select-keymaps ()
1073 ;; Setup conditions for selecting the proper keymaps in cua--keymap-alist.
1074 (setq cua--ena-region-keymap
1075 (and mark-active (not deactivate-mark)))
1076 (setq cua--ena-prefix-override-keymap
1077 (and cua--ena-region-keymap
1078 cua-enable-cua-keys
1079 (not cua-inhibit-cua-keys)
1080 (or (eq cua-enable-cua-keys t)
1081 (not cua--explicit-region-start))
1082 (not executing-kbd-macro)
1083 (not cua--prefix-override-timer)))
1084 (setq cua--ena-prefix-repeat-keymap
1085 (and cua--ena-region-keymap
1086 (timerp cua--prefix-override-timer)))
1087 (setq cua--ena-cua-keys-keymap
1088 (and cua-enable-cua-keys
1089 (not cua-inhibit-cua-keys)
1090 (or (eq cua-enable-cua-keys t)
1091 cua--last-region-shifted)))
1092 (setq cua--ena-global-mark-keymap
1093 (and cua--global-mark-active
1094 (not (window-minibuffer-p)))))
1095
1096 (defvar cua--keymaps-initalized nil)
1097
1098 (defun cua--init-keymaps ()
1099 (unless (eq cua-use-hyper-key 'only)
1100 (define-key cua-global-keymap [(shift return)] 'cua-set-rectangle-mark))
1101 (when cua-use-hyper-key
1102 (cua--M/H-key cua-global-keymap 'space 'cua-set-rectangle-mark)
1103 (define-key cua-global-keymap [(hyper mouse-1)] 'cua-mouse-set-rectangle-mark))
1104
1105 (define-key cua-global-keymap [(shift control ? )] 'cua-toggle-global-mark)
1106
1107 ;; replace region with rectangle or element on kill ring
1108 (define-key cua-global-keymap [remap yank] 'cua-paste)
1109 (define-key cua-global-keymap [remap clipboard-yank] 'cua-paste)
1110 ;; replace current yank with previous kill ring element
1111 (define-key cua-global-keymap [remap yank-pop] 'cua-paste-pop)
1112 ;; set mark
1113 (define-key cua-global-keymap [remap set-mark-command] 'cua-set-mark)
1114 ;; undo
1115 (define-key cua-global-keymap [remap undo] 'cua-undo)
1116 (define-key cua-global-keymap [remap advertised-undo] 'cua-undo)
1117
1118 (define-key cua--cua-keys-keymap [(control x) timeout] 'kill-region)
1119 (define-key cua--cua-keys-keymap [(shift control x)] 'Control-X-prefix)
1120 (define-key cua--cua-keys-keymap [(control c) timeout] 'copy-region-as-kill)
1121 (define-key cua--cua-keys-keymap [(shift control c)] 'mode-specific-command-prefix)
1122 (define-key cua--cua-keys-keymap [(control z)] 'undo)
1123 (define-key cua--cua-keys-keymap [(control v)] 'yank)
1124 (define-key cua--cua-keys-keymap [(meta v)] 'cua-repeat-replace-region)
1125 (define-key cua--cua-keys-keymap [remap exchange-point-and-mark] 'cua-exchange-point-and-mark)
1126
1127 (define-key cua--prefix-override-keymap [(control x)] 'cua--prefix-override-handler)
1128 (define-key cua--prefix-override-keymap [(control c)] 'cua--prefix-override-handler)
1129
1130 (define-key cua--prefix-repeat-keymap [(control x) (control x)] 'cua--prefix-repeat-handler)
1131 (define-key cua--prefix-repeat-keymap [(control x) up] 'cua--prefix-cut-handler)
1132 (define-key cua--prefix-repeat-keymap [(control x) down] 'cua--prefix-cut-handler)
1133 (define-key cua--prefix-repeat-keymap [(control x) left] 'cua--prefix-cut-handler)
1134 (define-key cua--prefix-repeat-keymap [(control x) right] 'cua--prefix-cut-handler)
1135 (define-key cua--prefix-repeat-keymap [(control c) (control c)] 'cua--prefix-repeat-handler)
1136 (define-key cua--prefix-repeat-keymap [(control c) up] 'cua--prefix-copy-handler)
1137 (define-key cua--prefix-repeat-keymap [(control c) down] 'cua--prefix-copy-handler)
1138 (define-key cua--prefix-repeat-keymap [(control c) left] 'cua--prefix-copy-handler)
1139 (define-key cua--prefix-repeat-keymap [(control c) right] 'cua--prefix-copy-handler)
1140
1141 ;; replace current region
1142 (define-key cua--region-keymap [remap self-insert-command] 'cua-replace-region)
1143 (define-key cua--region-keymap [remap self-insert-iso] 'cua-replace-region)
1144 (define-key cua--region-keymap [remap insert-register] 'cua-replace-region)
1145 (define-key cua--region-keymap [remap newline-and-indent] 'cua-replace-region)
1146 (define-key cua--region-keymap [remap newline] 'cua-replace-region)
1147 (define-key cua--region-keymap [remap open-line] 'cua-replace-region)
1148 ;; delete current region
1149 (define-key cua--region-keymap [remap delete-backward-char] 'cua-delete-region)
1150 (define-key cua--region-keymap [remap backward-delete-char] 'cua-delete-region)
1151 (define-key cua--region-keymap [remap backward-delete-char-untabify] 'cua-delete-region)
1152 (define-key cua--region-keymap [remap delete-char] 'cua-delete-region)
1153 ;; kill region
1154 (define-key cua--region-keymap [remap kill-region] 'cua-cut-region)
1155 ;; copy region
1156 (define-key cua--region-keymap [remap copy-region-as-kill] 'cua-copy-region)
1157 (define-key cua--region-keymap [remap kill-ring-save] 'cua-copy-region)
1158 ;; cancel current region/rectangle
1159 (define-key cua--region-keymap [remap keyboard-escape-quit] 'cua-cancel)
1160 (define-key cua--region-keymap [remap keyboard-quit] 'cua-cancel)
1161 )
1162
1163 ;; State prior to enabling cua-mode
1164 ;; Value is a list with the following elements:
1165 ;; transient-mark-mode
1166 ;; delete-selection-mode
1167 ;; pc-selection-mode
1168
1169 (defvar cua--saved-state nil)
1170
1171 ;;;###autoload
1172 (defun cua-mode (&optional arg)
1173 "Toggle CUA key-binding mode.
1174 When enabled, using shifted movement keys will activate the region (and
1175 highlight the region using `transient-mark-mode'), and typed text replaces
1176 the active selection. C-z, C-x, C-c, and C-v will undo, cut, copy, and
1177 paste (in addition to the normal emacs bindings)."
1178 (interactive "P")
1179 (setq cua-mode
1180 (cond
1181 ((null arg) (not cua-mode))
1182 ((symbolp arg) t)
1183 (t (> (prefix-numeric-value arg) 0))))
1184
1185 (setq mark-even-if-inactive t)
1186 (setq highlight-nonselected-windows nil)
1187 (make-variable-buffer-local 'cua--explicit-region-start)
1188 (make-variable-buffer-local 'cua--status-string)
1189
1190 (unless cua--keymaps-initalized
1191 (cua--init-keymaps)
1192 (setq cua--keymaps-initalized t))
1193
1194 (if cua-mode
1195 (progn
1196 (add-hook 'pre-command-hook 'cua--pre-command-handler)
1197 (add-hook 'post-command-hook 'cua--post-command-handler)
1198 (if (and cua-enable-modeline-indications (not (assoc 'cua-mode minor-mode-alist)))
1199 (setq minor-mode-alist (cons '(cua-mode cua--status-string) minor-mode-alist)))
1200 )
1201 (remove-hook 'pre-command-hook 'cua--pre-command-handler)
1202 (remove-hook 'post-command-hook 'cua--post-command-handler))
1203
1204 (if (not cua-mode)
1205 (setq emulation-mode-map-alists (delq 'cua--keymap-alist emulation-mode-map-alists))
1206 (add-to-list 'emulation-mode-map-alists 'cua--keymap-alist)
1207 (cua--select-keymaps))
1208
1209 (if (fboundp 'cua--rectangle-on-off)
1210 (cua--rectangle-on-off cua-mode))
1211
1212 (cond
1213 (cua-mode
1214 (setq cua--saved-state
1215 (list
1216 transient-mark-mode
1217 (and (boundp 'delete-selection-mode) delete-selection-mode)
1218 (and (boundp 'pc-selection-mode) pc-selection-mode)))
1219 (if (and (boundp 'delete-selection-mode) delete-selection-mode)
1220 (delete-selection-mode))
1221 (if (and (boundp 'pc-selection-mode) pc-selection-mode)
1222 (pc-selection-mode))
1223 (setq transient-mark-mode (and cua-mode
1224 (if cua-highlight-region-shift-only
1225 (not cua--explicit-region-start)
1226 t)))
1227 (if (interactive-p)
1228 (message "CUA mode enabled")))
1229 (cua--saved-state
1230 (setq transient-mark-mode (car cua--saved-state))
1231 (if (nth 1 cua--saved-state)
1232 (delete-selection-mode 1))
1233 (if (nth 2 cua--saved-state)
1234 (pc-selection-mode 1))
1235 (if (interactive-p)
1236 (message "CUA mode disabled.%s%s%s%s"
1237 (if (nth 1 cua--saved-state) " Delete-Selection" "")
1238 (if (and (nth 1 cua--saved-state) (nth 2 cua--saved-state)) " and" "")
1239 (if (nth 2 cua--saved-state) " PC-Selection" "")
1240 (if (or (nth 1 cua--saved-state) (nth 2 cua--saved-state)) " enabled" "")))
1241 (setq cua--saved-state nil))
1242
1243 (t
1244 (if (interactive-p)
1245 (message "CUA mode disabled")))))
1246
1247 (defun cua-debug ()
1248 "Toggle cua debugging."
1249 (interactive)
1250 (setq cua--debug (not cua--debug)))
1251
1252 ;;; cua-base.el ends here