1 ;;; cua-rect.el --- CUA unified rectangle support
3 ;; Copyright (C) 1997-2015 Free Software Foundation, Inc.
5 ;; Author: Kim F. Storm <storm@cua.dk>
6 ;; Keywords: keyboard emulations convenience CUA
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; The rectangle handling and display code borrows from the standard
27 ;; GNU emacs rect.el package and the rect-mark.el package by Rick
28 ;; Sladkey <jrs@world.std.com>.
40 ;; If non-nil, restrict current region to this rectangle.
41 ;; Value is a vector [top bot left right corner ins virt select].
42 ;; CORNER specifies currently active corner 0=t/l 1=t/r 2=b/l 3=b/r.
43 ;; INS specifies whether to insert on left(nil) or right(t) side.
44 ;; If VIRT is non-nil, virtual straight edges are enabled.
45 ;; If SELECT is a regexp, only lines starting with that regexp are affected.")
46 (defvar cua--rectangle nil
)
47 (make-variable-buffer-local 'cua--rectangle
)
49 ;; Most recent rectangle geometry. Note: car is buffer.
50 (defvar cua--last-rectangle nil
)
52 ;; Rectangle restored by undo.
53 (defvar cua--restored-rectangle nil
)
55 ;; Last rectangle copied/killed; nil if last kill was not a rectangle.
56 (defvar cua--last-killed-rectangle nil
)
58 ;; List of overlays used to display current rectangle.
59 (defvar cua--rectangle-overlays nil
)
60 (make-variable-buffer-local 'cua--rectangle-overlays
)
61 (put 'cua--rectangle-overlays
'permanent-local t
)
63 (defvar cua--overlay-keymap
64 (let ((map (make-sparse-keymap)))
65 (define-key map
"\r" 'cua-rotate-rectangle
)))
67 (defvar cua--virtual-edges-debug nil
)
69 ;; Undo rectangle commands.
71 (defvar cua--rect-undo-set-point nil
)
73 (defun cua--rectangle-undo-boundary ()
74 (when (listp buffer-undo-list
)
75 (let ((s (cua--rect-start-position))
76 (e (cua--rect-end-position)))
78 (push (list 'apply
0 s e
79 'cua--rect-undo-handler
80 (copy-sequence cua--rectangle
) t s e
)
83 (defun cua--rect-undo-handler (rect on s e
)
84 (if (setq on
(not on
))
85 (setq cua--rect-undo-set-point s
)
86 (setq cua--restored-rectangle
(copy-sequence rect
))
87 (setq cua--buffer-and-point-before-command nil
))
88 (push (list 'apply
0 s
(if on e s
)
89 'cua--rect-undo-handler rect on s e
)
93 (define-minor-mode cua-rectangle-mark-mode
94 "Toggle the region as rectangular.
95 Activates the region if needed. Only lasts until the region is deactivated."
96 :keymap cua--rectangle-keymap
98 (cua-rectangle-mark-mode
99 (add-hook 'deactivate-mark-hook
100 (lambda () (cua-rectangle-mark-mode -
1)))
101 (add-hook 'post-command-hook
#'cua--rectangle-post-command nil t
)
102 (cua-set-rectangle-mark))
104 (cua--deactivate-rectangle)
105 (remove-hook 'post-command-hook
#'cua--rectangle-post-command t
))))
107 ;;; Rectangle geometry
109 (defun cua--rectangle-top (&optional val
)
110 ;; Top of CUA rectangle (buffer position on first line).
112 (aref cua--rectangle
0)
113 (setq val
(line-beginning-position))
114 (if (<= val
(aref cua--rectangle
1))
115 (aset cua--rectangle
0 val
)
116 (aset cua--rectangle
1 val
)
117 (cua--rectangle-corner 2))))
119 (defun cua--rectangle-bot (&optional val
)
120 ;; Bot of CUA rectangle (buffer position on last line).
122 (aref cua--rectangle
1)
123 (setq val
(line-end-position))
124 (if (>= val
(aref cua--rectangle
0))
125 (aset cua--rectangle
1 val
)
126 (aset cua--rectangle
0 val
)
127 (cua--rectangle-corner 2))))
129 (defun cua--rectangle-left (&optional val
)
130 ;; Left column of CUA rectangle.
132 (if (<= val
(aref cua--rectangle
3))
133 (aset cua--rectangle
2 val
)
134 (aset cua--rectangle
3 val
)
135 (cua--rectangle-corner (if (cua--rectangle-right-side) -
1 1)))
136 (aref cua--rectangle
2)))
138 (defun cua--rectangle-right (&optional val
)
139 ;; Right column of CUA rectangle.
141 (if (>= val
(aref cua--rectangle
2))
142 (aset cua--rectangle
3 val
)
143 (aset cua--rectangle
2 val
)
144 (cua--rectangle-corner (if (cua--rectangle-right-side) -
1 1)))
145 (aref cua--rectangle
3)))
147 (defun cua--rectangle-corner (&optional advance
)
148 ;; Currently active corner of rectangle.
149 (let ((c (aref cua--rectangle
4)))
150 (if (not (integerp advance
))
152 (aset cua--rectangle
4
154 (- 3 c
) ; opposite corner
155 (mod (+ c
4 advance
) 4)))
156 (aset cua--rectangle
5 0))))
158 (defun cua--rectangle-right-side (&optional topbot
)
159 ;; t if point is on right side of rectangle.
160 (if (and topbot
(= (cua--rectangle-left) (cua--rectangle-right)))
161 (< (cua--rectangle-corner) 2)
162 (= (mod (cua--rectangle-corner) 2) 1)))
164 (defun cua--rectangle-column ()
165 (if (cua--rectangle-right-side)
166 (cua--rectangle-right)
167 (cua--rectangle-left)))
169 (defun cua--rectangle-insert-col (&optional col
)
170 ;; Currently active corner of rectangle.
172 (aset cua--rectangle
5 col
)
173 (if (cua--rectangle-right-side t
)
174 (if (= (aref cua--rectangle
5) 0)
175 (1+ (cua--rectangle-right))
176 (aref cua--rectangle
5))
177 (cua--rectangle-left))))
179 (defun cua--rectangle-virtual-edges (&optional set val
)
180 ;; Current setting of rectangle virtual-edges
182 (aset cua--rectangle
6 val
))
183 (and ;(not buffer-read-only)
184 (aref cua--rectangle
6)))
186 (defun cua--rectangle-restriction (&optional val bounded negated
)
187 ;; Current rectangle restriction
189 (aset cua--rectangle
7
192 (list val bounded negated
)))
193 (aref cua--rectangle
7)))
195 (defun cua--rectangle-assert ()
196 (message "%S (%d)" cua--rectangle
(point))
197 (if (< (cua--rectangle-right) (cua--rectangle-left))
198 (message "rectangle right < left"))
199 (if (< (cua--rectangle-bot) (cua--rectangle-top))
200 (message "rectangle bot < top")))
202 (defun cua--rectangle-get-corners ()
203 ;; Calculate the rectangular region represented by point and mark,
204 ;; putting start in the upper left corner and end in the
205 ;; bottom right corner.
206 (let ((top (point)) (bot (mark)) r l corner
)
209 (setq l
(current-column))
211 (setq r
(current-column))
213 (setq corner
(if (<= l r
) 0 1))
214 (setq top
(prog1 bot
(setq bot top
)))
215 (setq corner
(if (<= l r
) 2 3)))
219 (setq l
(prog1 r
(setq r l
)))
226 (vector top bot l r corner
0 cua-virtual-rectangle-edges nil
)))
228 (defun cua--rectangle-set-corners ()
229 ;; Set mark and point in opposite corners of current rectangle.
230 (let (pp pc mp mc
(c (cua--rectangle-corner)))
232 ((= c
0) ; top/left -> bot/right
233 (setq pp
(cua--rectangle-top) pc
(cua--rectangle-left)
234 mp
(cua--rectangle-bot) mc
(cua--rectangle-right)))
235 ((= c
1) ; top/right -> bot/left
236 (setq pp
(cua--rectangle-top) pc
(cua--rectangle-right)
237 mp
(cua--rectangle-bot) mc
(cua--rectangle-left)))
238 ((= c
2) ; bot/left -> top/right
239 (setq pp
(cua--rectangle-bot) pc
(cua--rectangle-left)
240 mp
(cua--rectangle-top) mc
(cua--rectangle-right)))
241 ((= c
3) ; bot/right -> top/left
242 (setq pp
(cua--rectangle-bot) pc
(cua--rectangle-right)
243 mp
(cua--rectangle-top) mc
(cua--rectangle-left))))
248 ;; Move cursor inside rectangle, except if char at right edge is a tab.
249 (if (and (if (cua--rectangle-right-side)
250 (and (= (move-to-column pc
) (- pc tab-width
))
252 (> (move-to-column pc
) pc
))
257 (defun cua--rect-start-position ()
258 ;; Return point of top left corner
260 (goto-char (cua--rectangle-top))
261 (and (> (move-to-column (cua--rectangle-left))
262 (cua--rectangle-left))
267 (defun cua--rect-end-position ()
268 ;; Return point of bottom right cornet
270 (goto-char (cua--rectangle-bot))
271 (and (= (move-to-column (cua--rectangle-right))
272 (- (cua--rectangle-right) tab-width
))
278 ;;; Rectangle resizing
280 (defun cua--forward-line (n)
281 ;; Move forward/backward one line. Returns t if movement.
283 (and (= (forward-line n
) 0)
284 ;; Deal with end of buffer
288 (defun cua--rectangle-resized ()
289 ;; Refresh state after resizing rectangle
290 (setq cua--buffer-and-point-before-command nil
)
291 (cua--rectangle-insert-col 0)
292 (cua--rectangle-set-corners)
295 (defun cua-resize-rectangle-right (n)
296 "Resize rectangle to the right."
298 (let ((resized (> n
0)))
302 ((cua--rectangle-right-side)
303 (cua--rectangle-right (1+ (cua--rectangle-right)))
304 (move-to-column (cua--rectangle-right)))
306 (cua--rectangle-left (1+ (cua--rectangle-left)))
307 (move-to-column (cua--rectangle-right)))))
309 (cua--rectangle-resized))))
311 (defun cua-resize-rectangle-left (n)
312 "Resize rectangle to the left."
317 (if (or (= (cua--rectangle-right) 0)
318 (and (not (cua--rectangle-right-side)) (= (cua--rectangle-left) 0)))
321 ((cua--rectangle-right-side)
322 (cua--rectangle-right (1- (cua--rectangle-right)))
323 (move-to-column (cua--rectangle-right)))
325 (cua--rectangle-left (1- (cua--rectangle-left)))
326 (move-to-column (cua--rectangle-right))))
329 (cua--rectangle-resized))))
331 (defun cua-resize-rectangle-down (n)
332 "Resize rectangle downwards."
338 ((>= (cua--rectangle-corner) 2)
339 (goto-char (cua--rectangle-bot))
340 (when (cua--forward-line 1)
341 (move-to-column (cua--rectangle-column))
342 (cua--rectangle-bot t
)
345 (goto-char (cua--rectangle-top))
346 (when (cua--forward-line 1)
347 (move-to-column (cua--rectangle-column))
348 (cua--rectangle-top t
)
351 (cua--rectangle-resized))))
353 (defun cua-resize-rectangle-up (n)
354 "Resize rectangle upwards."
360 ((>= (cua--rectangle-corner) 2)
361 (goto-char (cua--rectangle-bot))
362 (when (cua--forward-line -
1)
363 (move-to-column (cua--rectangle-column))
364 (cua--rectangle-bot t
)
367 (goto-char (cua--rectangle-top))
368 (when (cua--forward-line -
1)
369 (move-to-column (cua--rectangle-column))
370 (cua--rectangle-top t
)
373 (cua--rectangle-resized))))
375 (defun cua-resize-rectangle-eol ()
376 "Resize rectangle to end of line."
380 (if (> (current-column) (cua--rectangle-right))
381 (cua--rectangle-right (current-column)))
382 (if (not (cua--rectangle-right-side))
383 (cua--rectangle-corner 1))
384 (cua--rectangle-resized)))
386 (defun cua-resize-rectangle-bol ()
387 "Resize rectangle to beginning of line."
391 (cua--rectangle-left (current-column))
392 (if (cua--rectangle-right-side)
393 (cua--rectangle-corner -
1))
394 (cua--rectangle-resized)))
396 (defun cua-resize-rectangle-bot ()
397 "Resize rectangle to bottom of buffer."
399 (goto-char (point-max))
400 (move-to-column (cua--rectangle-column))
401 (cua--rectangle-bot t
)
402 (cua--rectangle-resized))
404 (defun cua-resize-rectangle-top ()
405 "Resize rectangle to top of buffer."
407 (goto-char (point-min))
408 (move-to-column (cua--rectangle-column))
409 (cua--rectangle-top t
)
410 (cua--rectangle-resized))
412 (defun cua-resize-rectangle-page-up ()
413 "Resize rectangle upwards by one scroll page."
416 (move-to-column (cua--rectangle-column))
417 (if (>= (cua--rectangle-corner) 2)
418 (cua--rectangle-bot t
)
419 (cua--rectangle-top t
))
420 (cua--rectangle-resized))
422 (defun cua-resize-rectangle-page-down ()
423 "Resize rectangle downwards by one scroll page."
426 (move-to-column (cua--rectangle-column))
427 (if (>= (cua--rectangle-corner) 2)
428 (cua--rectangle-bot t
)
429 (cua--rectangle-top t
))
430 (cua--rectangle-resized))
434 ;; This is pretty simplistic, but it does the job...
436 (defun cua-mouse-resize-rectangle (event)
437 "Set rectangle corner at mouse click position."
439 (mouse-set-point event
)
440 ;; FIX ME -- need to calculate virtual column.
441 (if (cua--rectangle-virtual-edges)
442 (move-to-column (car (posn-col-row (event-end event
))) t
))
443 (if (cua--rectangle-right-side)
444 (cua--rectangle-right (current-column))
445 (cua--rectangle-left (current-column)))
446 (if (>= (cua--rectangle-corner) 2)
447 (cua--rectangle-bot t
)
448 (cua--rectangle-top t
))
449 (cua--rectangle-resized))
451 (defvar cua--mouse-last-pos nil
)
453 (defun cua-mouse-set-rectangle-mark (event)
454 "Start rectangle at mouse click position."
457 (cua--deactivate-rectangle)
459 (setq cua--last-rectangle nil
)
460 (mouse-set-point event
)
461 ;; FIX ME -- need to calculate virtual column.
462 (cua-set-rectangle-mark)
463 (setq cua--buffer-and-point-before-command nil
)
464 (setq cua--mouse-last-pos nil
))
466 (defun cua-mouse-save-then-kill-rectangle (event arg
)
467 "Expand rectangle to mouse click position and copy rectangle.
468 If command is repeated at same position, delete the rectangle."
470 (if (and (eq this-command last-command
)
471 (eq (point) (car-safe cua--mouse-last-pos
))
472 (eq cua--last-killed-rectangle
(cdr-safe cua--mouse-last-pos
)))
474 (unless buffer-read-only
475 (cua--delete-rectangle))
477 (cua-mouse-resize-rectangle event
)
478 (let ((cua-keep-region-after-copy t
))
479 (cua-copy-region arg
)
480 (setq cua--mouse-last-pos
(cons (point) cua--last-killed-rectangle
)))))
482 (defun cua--mouse-ignore (_event)
484 (setq this-command last-command
))
486 (defun cua--rectangle-move (dir)
488 (top (cua--rectangle-top))
489 (bot (cua--rectangle-bot))
490 (l (cua--rectangle-left))
491 (r (cua--rectangle-right)))
495 (when (cua--forward-line -
1)
496 (cua--rectangle-top t
)
499 (cua--rectangle-bot t
)))
502 (when (cua--forward-line 1)
503 (cua--rectangle-bot t
)
505 (cua--forward-line 1)
506 (cua--rectangle-top t
)))
509 (cua--rectangle-left (1- l
))
510 (cua--rectangle-right (1- r
))))
512 (cua--rectangle-right (1+ r
))
513 (cua--rectangle-left (1+ l
)))
517 (setq cua--buffer-and-point-before-command nil
)
518 (cua--rectangle-set-corners)
519 (cua--keep-active))))
522 ;;; Operations on current rectangle
524 (defun cua--tabify-start (start end
)
525 ;; Return position where auto-tabify should start (or nil if not required).
529 (and (not buffer-read-only
)
530 cua-auto-tabify-rectangles
531 (if (or (not (integerp cua-auto-tabify-rectangles
))
532 (= (point-min) (point-max))
534 (goto-char (max (point-min)
535 (- start cua-auto-tabify-rectangles
)))
536 (search-forward "\t" (min (point-max)
537 (+ end cua-auto-tabify-rectangles
)) t
)))
540 (defun cua--rectangle-operation (keep-clear visible undo pad tabify
&optional fct post-fct
)
541 ;; Call FCT for each line of region with 4 parameters:
542 ;; Region start, end, left-col, right-col
543 ;; Point is at start when FCT is called
544 ;; Call fct with (s,e) = whole lines if VISIBLE non-nil.
545 ;; Only call fct for visible lines if VISIBLE==t.
546 ;; Set undo boundary if UNDO is non-nil.
547 ;; Rectangle is padded if PAD = t or numeric and (cua--rectangle-virtual-edges)
548 ;; Perform auto-tabify after operation if TABIFY is non-nil.
549 ;; Mark is kept if keep-clear is 'keep and cleared if keep-clear is 'clear.
550 (let* ((inhibit-field-text-motion t
)
551 (start (cua--rectangle-top))
552 (end (cua--rectangle-bot))
553 (l (cua--rectangle-left))
554 (r (1+ (cua--rectangle-right)))
556 (tabpad (and (integerp pad
) (= pad
2)))
557 (sel (cua--rectangle-restriction))
558 (tabify-start (and tabify
(cua--tabify-start start end
))))
560 (cua--rectangle-undo-boundary))
562 (setq pad
(cua--rectangle-virtual-edges)))
566 (when (> (cua--rectangle-corner) 1)
568 (and (bolp) (not (eolp)) (not (eobp))
569 (setq end
(1+ end
))))
571 (setq start
(max (window-start) start
))
572 (setq end
(min (window-end) end
)))
574 (setq end
(line-end-position))
575 (if (and visible
(bolp) (not (eobp)))
578 (setq start
(line-beginning-position))
579 (narrow-to-region start end
)
580 (goto-char (point-min))
581 (while (< (point) (point-max))
582 (move-to-column r pad
)
583 (and (not pad
) (not visible
) (> (current-column) r
)
585 (if (and tabpad
(not pad
) (looking-at "\t"))
587 (set-marker m
(point))
588 (move-to-column l pad
)
589 (if (and fct
(or visible
(and (>= (current-column) l
) (<= (current-column) r
))))
590 (let ((v t
) (p (point)))
593 (setq v
(looking-at (car sel
)))
594 (setq v
(re-search-forward (car sel
) m t
))
596 (if (car (cdr (cdr sel
)))
599 (funcall fct p m l r v
)
601 (funcall fct p m l r
)))))
605 (cua--rectangle-bot t
))
607 (funcall post-fct l r
))
609 (tabify tabify-start
(point)))))
611 ((eq keep-clear
'keep
)
613 ((eq keep-clear
'clear
)
615 ((eq keep-clear
'corners
)
616 (cua--rectangle-set-corners)
618 (setq cua--buffer-and-point-before-command nil
)))
620 (put 'cua--rectangle-operation
'lisp-indent-function
4)
622 (defun cua--delete-rectangle ()
624 (if (not (cua--rectangle-virtual-edges))
625 (cua--rectangle-operation nil nil t
2 t
626 (lambda (s e _l _r _v
)
627 (setq lines
(1+ lines
))
628 (if (and (> e s
) (<= e
(point-max)))
629 (delete-region s e
))))
630 (cua--rectangle-operation nil
1 t nil t
631 (lambda (s e _l _r _v
)
632 (setq lines
(1+ lines
))
633 (when (and (> e s
) (<= e
(point-max)))
634 (delete-region s e
)))))
637 (defun cua--extract-rectangle ()
639 (if (not (cua--rectangle-virtual-edges))
640 (cua--rectangle-operation nil nil nil nil nil
; do not tabify
642 (setq rect
(cons (cua--filter-buffer-noprops s e
) rect
))))
643 (cua--rectangle-operation nil
1 nil nil nil
; do not tabify
645 (let ((copy t
) (bs 0) (as 0) row
)
646 (if (= s e
) (setq e
(1+ e
)))
649 (if (= (point) (line-end-position))
652 (skip-chars-forward "\s\t" e
)
653 (setq bs
(- (min r
(current-column)) l
)
656 (skip-chars-backward "\s\t" s
)
657 (setq as
(- r
(max (current-column) l
))
659 (setq row
(if (and copy
(> e s
))
660 (cua--filter-buffer-noprops s e
)
663 (setq row
(concat (make-string bs ?\s
) row
)))
665 (setq row
(concat row
(make-string as ?\s
))))
666 (setq rect
(cons row rect
))))))
669 (defun cua--insert-rectangle (rect &optional below paste-column line-count
)
670 ;; Insert rectangle as insert-rectangle, but don't set mark and exit with
671 ;; point at either next to top right or below bottom left corner
672 ;; Notice: In overwrite mode, the rectangle is inserted as separate text lines.
674 (setq below
(and (bolp)
675 (or (eolp) (eobp) (= (1+ (point)) (point-max))))))
677 (setq paste-column
(current-column)))
680 (tabify-start (cua--tabify-start (point) (point)))
683 (while (or lines below
)
688 (or (bolp) (insert ?
\n))))
689 (unless overwrite-mode
690 (move-to-column paste-column t
))
693 (insert-for-yank (car lines
))
695 (setq last-column
(current-column)))
696 (setq lines
(cdr lines
))
697 (and first
(not below
)
700 (if (and line-count
(= (setq line-count
(1- line-count
)) 0))
702 (when (and line-count last-column
(not overwrite-mode
))
703 (while (> line-count
0)
705 (or (bolp) (insert ?
\n))
706 (move-to-column paste-column t
)
707 (insert-char ?\s
(- last-column paste-column -
1))
708 (setq line-count
(1- line-count
))))
709 (when (and tabify-start
710 (not overwrite-mode
))
711 (tabify tabify-start
(point)))
712 (and p
(not overwrite-mode
)
715 (defun cua--copy-rectangle-as-kill (&optional ring
)
717 (set-register cua--register
(cua--extract-rectangle))
718 (setq killed-rectangle
(cua--extract-rectangle))
719 (setq cua--last-killed-rectangle
(cons (and kill-ring
(car kill-ring
)) killed-rectangle
))
722 (function (lambda (row) (concat row
"\n")))
723 killed-rectangle
"")))))
725 (defun cua--activate-rectangle ()
726 ;; Set cua--rectangle to indicate we're marking a rectangle.
727 ;; Be careful if we are already marking a rectangle.
729 (or (and cua--last-rectangle
730 (eq (car cua--last-rectangle
) (current-buffer))
731 (eq (car (cdr cua--last-rectangle
)) (point))
732 (cdr (cdr cua--last-rectangle
)))
733 (cua--rectangle-get-corners))
734 cua--status-string
(if (cua--rectangle-virtual-edges) " [R]" "")
735 cua--last-rectangle nil
)
738 ;; (defvar cua-save-point nil)
740 (defun cua--deactivate-rectangle ()
741 ;; This is used to clean up after `cua--activate-rectangle'.
742 (mapc #'delete-overlay cua--rectangle-overlays
)
743 (setq cua--last-rectangle
(cons (current-buffer)
744 (cons (point) ;; cua-save-point
747 cua--rectangle-overlays nil
748 cua--status-string nil
749 cua--mouse-last-pos nil
)
750 ;; FIXME: This call to cua-rectangle-mark-mode is a workaround.
751 ;; Deactivation can happen in various different ways, and we
752 ;; currently don't handle them all in a coherent way.
753 (if cua-rectangle-mark-mode
(cua-rectangle-mark-mode -
1)))
755 (defun cua--highlight-rectangle ()
756 ;; This function is used to highlight the rectangular region.
757 ;; We do this by putting an overlay on each line within the rectangle.
758 ;; Each overlay extends across all the columns of the rectangle.
759 ;; We try to reuse overlays where possible because this is more efficient
760 ;; and results in less flicker.
761 ;; If cua--rectangle-virtual-edges is nil and the buffer contains tabs or short lines,
762 ;; the highlighted region may not be perfectly rectangular.
763 (let ((deactivate-mark deactivate-mark
)
764 (old cua--rectangle-overlays
)
766 (left (cua--rectangle-left))
767 (right (1+ (cua--rectangle-right))))
768 (when (/= left right
)
769 (sit-for 0) ; make window top/bottom reliable
770 (cua--rectangle-operation nil t nil nil nil
; do not tabify
772 (let ((rface (if v
'cua-rectangle
'cua-rectangle-noselect
))
774 (when (cua--rectangle-virtual-edges)
775 (let ((lb (line-beginning-position))
776 (le (line-end-position))
779 (setq cl
(move-to-column l
)
781 (setq cr
(move-to-column r
)
786 (setq cl0
(current-column)))
790 (setq cr0
(current-column)))
791 (unless (and (= cl l
) (= cr r
))
795 (- l cl0
(if (and (= le pl
) (/= le lb
)) 1 0))
796 (if cua--virtual-edges-debug ?. ?\s
))
797 'face
(or (get-text-property (max (1- s
) (point-min)) 'face
) 'default
)))
804 (or bs
(/= cr0
(- cr tab-width
)))
805 (/= (mod cr tab-width
) 0))
811 (if cua--virtual-edges-debug ?
, ?\s
))
813 (if (cua--rectangle-right-side)
814 (put-text-property (1- (length ms
)) (length ms
) 'cursor
2 ms
)
815 (put-text-property 0 1 'cursor
2 ms
))
816 (setq bs
(concat bs ms
))
821 (- r cr0
(if (= le pr
) 1 0))
822 (if cua--virtual-edges-debug ?~ ?\s
))
824 (if (cua--rectangle-right-side)
825 (put-text-property (1- (length as
)) (length as
) 'cursor
2 as
)
826 (put-text-property 0 1 'cursor
2 as
))
828 (setq e
(1- e
))))))))
829 ;; Trim old leading overlays.
831 (setq overlay
(car old
))
832 (< (overlay-start overlay
) s
)
833 (/= (overlay-end overlay
) e
))
834 (delete-overlay overlay
)
835 (setq old
(cdr old
)))
836 ;; Reuse an overlay if possible, otherwise create one.
838 (setq overlay
(car old
))
839 (or (= (overlay-start overlay
) s
)
840 (= (overlay-end overlay
) e
)))
842 (move-overlay overlay s e
)
843 (setq old
(cdr old
)))
844 (setq overlay
(make-overlay s e
)))
845 (overlay-put overlay
'before-string bs
)
846 (overlay-put overlay
'after-string as
)
847 (overlay-put overlay
'face rface
)
848 (overlay-put overlay
'keymap cua--overlay-keymap
)
849 (overlay-put overlay
'window
(selected-window))
850 (setq new
(cons overlay new
))))))
851 ;; Trim old trailing overlays.
852 (mapc (function delete-overlay
) old
)
853 (setq cua--rectangle-overlays
(nreverse new
))))
855 (defun cua--indent-rectangle (&optional ch to-col clear
)
856 ;; Indent current rectangle.
857 (let ((col (cua--rectangle-insert-col))
858 (pad (cua--rectangle-virtual-edges))
860 (cua--rectangle-operation (if clear
'clear
'corners
) nil t pad nil
862 (move-to-column col pad
)
864 (< (current-column) col
))
865 (move-to-column col t
))
867 (to-col (indent-to to-col
))
868 ((and ch
(not (eq ch ?
\t))) (insert ch
))
869 (t (tab-to-tab-stop)))
870 (if (cua--rectangle-right-side t
)
871 (cua--rectangle-insert-col (current-column))
872 (setq indent
(- (current-column) l
))))
874 (when (and indent
(> indent
0))
875 (aset cua--rectangle
2 (+ l indent
))
876 (aset cua--rectangle
3 (+ r indent -
1)))))))
879 ;; rectangle functions / actions
882 (defvar cua--rectangle-initialized nil
)
884 (defun cua-set-rectangle-mark (&optional reopen
)
885 "Set mark and start in CUA rectangle mode.
886 With prefix argument, activate previous rectangle if possible."
888 (unless cua--rectangle-initialized
889 (cua--init-rectangles))
890 (when (not cua--rectangle
)
893 (eq (car cua--last-rectangle
) (current-buffer)))
894 (goto-char (car (cdr cua--last-rectangle
)))
895 (if (not mark-active
)
896 (push-mark nil nil t
)))
897 (cua--activate-rectangle)
898 (cua--rectangle-set-corners)
899 (if cua-enable-rectangle-auto-help
900 (cua-help-for-rectangle t
))))
902 (defun cua-clear-rectangle-mark ()
903 "Cancel current rectangle."
906 (setq mark-active nil
)
907 (cua--deactivate-rectangle)))
909 (defun cua-toggle-rectangle-mark ()
912 (cua--deactivate-rectangle)
913 (unless cua--rectangle-initialized
914 (cua--init-rectangles))
915 (cua--activate-rectangle))
917 (if cua-enable-rectangle-auto-help
918 (cua-help-for-rectangle t
))
919 (if cua-enable-region-auto-help
920 (cua-help-for-region t
))))
922 (defun cua-restrict-regexp-rectangle (arg)
923 "Restrict rectangle to lines (not) matching regexp.
924 With prefix argument, toggle restriction."
926 (let ((r (cua--rectangle-restriction)))
927 (if (and r
(null (car (cdr r
))))
929 (cua--rectangle-restriction (car r
) nil
(not (car (cdr (cdr r
)))))
930 (cua--rectangle-restriction "" nil nil
))
931 (cua--rectangle-restriction
932 (read-from-minibuffer "Restrict rectangle (regexp): "
933 nil nil nil nil
) nil arg
))))
935 (defun cua-restrict-prefix-rectangle (arg)
936 "Restrict rectangle to lines (not) starting with CHAR.
937 With prefix argument, toggle restriction."
939 (let ((r (cua--rectangle-restriction)))
940 (if (and r
(car (cdr r
)))
942 (cua--rectangle-restriction (car r
) t
(not (car (cdr (cdr r
)))))
943 (cua--rectangle-restriction "" nil nil
))
944 (cua--rectangle-restriction
946 (read-char "Restrictive rectangle (char): ")) t arg
))))
948 (defun cua-move-rectangle-up ()
950 (cua--rectangle-move 'up
))
952 (defun cua-move-rectangle-down ()
954 (cua--rectangle-move 'down
))
956 (defun cua-move-rectangle-left ()
958 (cua--rectangle-move 'left
))
960 (defun cua-move-rectangle-right ()
962 (cua--rectangle-move 'right
))
964 (defun cua-rotate-rectangle ()
966 (cua--rectangle-corner (if (= (cua--rectangle-left) (cua--rectangle-right)) 0 1))
967 (cua--rectangle-set-corners)
968 (if (cua--rectangle-virtual-edges)
969 (setq cua--buffer-and-point-before-command nil
)))
971 (defun cua-toggle-rectangle-virtual-edges ()
973 (cua--rectangle-virtual-edges t
(not (cua--rectangle-virtual-edges)))
974 (cua--rectangle-set-corners)
975 (setq cua--status-string
(and (cua--rectangle-virtual-edges) " [R]"))
978 (defun cua-do-rectangle-padding ()
981 (message "Cannot do padding in read-only buffer")
982 (cua--rectangle-operation nil nil t t t
)
983 (cua--rectangle-set-corners))
986 (defun cua-open-rectangle ()
987 "Blank out CUA rectangle, shifting text right.
988 The text previously in the region is not overwritten by the blanks,
989 but instead winds up to the right of the rectangle."
991 (cua--rectangle-operation 'corners nil t
1 nil
993 (skip-chars-forward " \t")
994 (let ((ws (- (current-column) l
))
996 (skip-chars-backward " \t")
997 (delete-region (point) p
)
998 (indent-to (+ r ws
))))))
1000 (defun cua-close-rectangle (arg)
1001 "Delete all whitespace starting at left edge of CUA rectangle.
1002 On each line in the rectangle, all continuous whitespace starting
1003 at that column is deleted.
1004 With prefix arg, also delete whitespace to the left of that column."
1006 (cua--rectangle-operation 'clear nil t
1 nil
1007 (lambda (s _e _l _r
)
1009 (skip-syntax-backward " " (line-beginning-position))
1011 (skip-syntax-forward " " (line-end-position))
1012 (delete-region s
(point)))))
1014 (defun cua-blank-rectangle ()
1015 "Blank out CUA rectangle.
1016 The text previously in the rectangle is overwritten by the blanks."
1018 (cua--rectangle-operation 'keep nil nil
1 nil
1021 (skip-syntax-forward " " (line-end-position))
1023 (let ((column (current-column)))
1025 (skip-syntax-backward " " (line-beginning-position))
1026 (delete-region (point) e
)
1027 (indent-to column
)))))
1029 (defun cua-align-rectangle ()
1030 "Align rectangle lines to left column."
1032 (cua--rectangle-operation 'clear nil t t nil
1034 (let ((b (line-beginning-position)))
1035 (skip-syntax-backward "^ " b
)
1036 (skip-syntax-backward " " b
)
1038 (skip-syntax-forward " " (line-end-position))
1039 (delete-region s
(point))
1043 ;; (setq cua-save-point (point))
1046 (declare-function cua--cut-rectangle-to-global-mark
"cua-gmrk" (as-text))
1047 (declare-function cua--copy-rectangle-to-global-mark
"cua-gmrk" (as-text))
1049 (defun cua-copy-rectangle-as-text (&optional arg delete
)
1050 "Copy rectangle, but store as normal text."
1052 (if cua--global-mark-active
1054 (cua--cut-rectangle-to-global-mark t
)
1055 (cua--copy-rectangle-to-global-mark t
))
1056 (let* ((rect (cua--extract-rectangle))
1058 (function (lambda (row) (concat row
"\n")))
1060 (setq arg
(cua--prefix-arg arg
))
1062 (set-register cua--register text
)
1065 (cua--delete-rectangle))
1068 (defun cua-cut-rectangle-as-text (arg)
1069 "Kill rectangle, but store as normal text."
1071 (cua-copy-rectangle-as-text arg
(not buffer-read-only
)))
1073 (defun cua-string-rectangle (string)
1074 "Replace CUA rectangle contents with STRING on each line.
1075 The length of STRING need not be the same as the rectangle width."
1076 (interactive "sString rectangle: ")
1077 (cua--rectangle-operation 'keep nil t t nil
1080 (skip-chars-forward " \t")
1081 (let ((ws (- (current-column) l
)))
1082 (delete-region s
(point))
1084 (indent-to (+ (current-column) ws
))))
1085 (unless (cua--rectangle-restriction)
1087 (cua--rectangle-right (max l
(+ l
(length string
) -
1)))))))
1089 (defun cua-fill-char-rectangle (character)
1090 "Replace CUA rectangle contents with CHARACTER."
1091 (interactive "cFill rectangle with character: ")
1092 (cua--rectangle-operation 'clear nil t
1 nil
1095 (move-to-column l t
)
1096 (insert-char character
(- r l
)))))
1098 (defun cua-replace-in-rectangle (regexp newtext
)
1099 "Replace REGEXP with NEWTEXT in each line of CUA rectangle."
1100 (interactive "sReplace regexp: \nsNew text: ")
1101 (if buffer-read-only
1102 (message "Cannot replace in read-only buffer")
1103 (cua--rectangle-operation 'keep nil t
1 nil
1104 (lambda (_s e _l _r
)
1105 (if (re-search-forward regexp e t
)
1106 (replace-match newtext nil nil
))))))
1108 (defun cua-incr-rectangle (increment)
1109 "Increment each line of CUA rectangle by prefix amount."
1111 (cua--rectangle-operation 'keep nil t
1 nil
1112 (lambda (_s e _l _r
)
1114 ((re-search-forward "0x\\([0-9a-fA-F]+\\)" e t
)
1115 (let* ((txt (cua--filter-buffer-noprops (match-beginning 1) (match-end 1)))
1116 (n (string-to-number txt
16))
1117 (fmt (format "0x%%0%dx" (length txt
))))
1118 (replace-match (format fmt
(+ n increment
)))))
1119 ((re-search-forward "\\( *-?[0-9]+\\)" e t
)
1120 (let* ((txt (cua--filter-buffer-noprops (match-beginning 1) (match-end 1)))
1121 (prefix (if (= (aref txt
0) ?
0) "0" ""))
1122 (n (string-to-number txt
10))
1123 (fmt (format "%%%s%dd" prefix
(length txt
))))
1124 (replace-match (format fmt
(+ n increment
)))))
1127 (defvar cua--rectangle-seq-format
"%d"
1128 "Last format used by `cua-sequence-rectangle'.")
1130 (defun cua-sequence-rectangle (first incr format
)
1131 "Resequence each line of CUA rectangle starting from FIRST.
1132 The numbers are formatted according to the FORMAT string."
1134 (list (if current-prefix-arg
1135 (prefix-numeric-value current-prefix-arg
)
1137 (read-string "Start value: (0) " nil nil
"0")))
1139 (read-string "Increment: (1) " nil nil
"1"))
1140 (read-string (concat "Format: (" cua--rectangle-seq-format
") "))))
1141 (if (= (length format
) 0)
1142 (setq format cua--rectangle-seq-format
)
1143 (setq cua--rectangle-seq-format format
))
1144 (cua--rectangle-operation 'clear nil t
1 nil
1147 (insert (format format first
))
1148 (setq first
(+ first incr
)))))
1150 (defmacro cua--convert-rectangle-as
(command tabify
)
1151 `(cua--rectangle-operation 'clear nil nil nil
,tabify
1155 (defun cua-upcase-rectangle ()
1156 "Convert the rectangle to upper case."
1158 (cua--convert-rectangle-as upcase-region nil
))
1160 (defun cua-downcase-rectangle ()
1161 "Convert the rectangle to lower case."
1163 (cua--convert-rectangle-as downcase-region nil
))
1165 (defun cua-upcase-initials-rectangle ()
1166 "Convert the rectangle initials to upper case."
1168 (cua--convert-rectangle-as upcase-initials-region nil
))
1170 (defun cua-capitalize-rectangle ()
1171 "Convert the rectangle to proper case."
1173 (cua--convert-rectangle-as capitalize-region nil
))
1176 ;;; Replace/rearrange text in current rectangle
1178 (defun cua--rectangle-aux-replace (width adjust keep replace pad format-fct
&optional setup-fct
)
1179 ;; Process text inserted by calling SETUP-FCT or current rectangle if nil.
1180 ;; Then call FORMAT-FCT on text (if non-nil); takes two args: start and end.
1181 ;; Fill to WIDTH characters if > 0 or fill to current width if == 0.
1182 ;; Don't fill if WIDTH < 0.
1183 ;; Replace current rectangle by filled text if REPLACE is non-nil
1184 (let ((auxbuf (get-buffer-create "*CUA temp*"))
1185 (w (if (> width
1) width
1186 (- (cua--rectangle-right) (cua--rectangle-left) -
1)))
1187 (r (or setup-fct
(cua--extract-rectangle)))
1189 (with-current-buffer auxbuf
1193 (cua--insert-rectangle r
))
1195 (let ((fill-column w
))
1196 (funcall format-fct
(point-min) (point-max))))
1198 (goto-char (point-min))
1200 (setq z
(cons (filter-buffer-substring (point) (line-end-position)) z
))
1202 (if (not cua--debug
)
1203 (kill-buffer auxbuf
))
1205 (setq z
(reverse z
))
1208 (cua--rectangle-operation nil nil t pad nil
1212 (skip-chars-forward " \t")
1213 (setq cc
(current-column))
1215 (print (list cc s e
) auxbuf
))
1216 (delete-region s
(point))
1219 (move-to-column l t
)
1221 (when (> (current-column) (+ l w
))
1223 (move-to-column (+ l w
) t
)
1224 (delete-region (point) y
)
1228 (print (list (current-column) cc
) auxbuf
))
1232 (message "Warning: Truncated %d row%s" tr
(if (> tr
1) "s" "")))
1234 (cua--rectangle-right (+ (cua--rectangle-left) w -
1)))
1236 (cua--rectangle-resized)))))
1238 (put 'cua--rectangle-aux-replace
'lisp-indent-function
4)
1240 (defun cua--left-fill-rectangle (_start _end
)
1242 (while (< (point) (point-max))
1243 (delete-horizontal-space nil
)
1245 (fill-region-as-paragraph (point-min) (point-max) 'left nil
)
1246 (untabify (point-min) (point-max)))
1248 (defun cua-text-fill-rectangle (width text
)
1249 "Replace rectangle with filled TEXT read from minibuffer.
1250 A numeric prefix argument is used a new width for the filled rectangle."
1252 (prefix-numeric-value current-prefix-arg
)
1253 (read-from-minibuffer "Enter text: "
1255 (cua--rectangle-aux-replace width t t t
1
1256 'cua--left-fill-rectangle
1257 (lambda () (insert text
))))
1259 (defun cua-refill-rectangle (width)
1260 "Fill contents of current rectangle.
1261 A numeric prefix argument is used as new width for the filled rectangle."
1263 (cua--rectangle-aux-replace
1264 (if width
(prefix-numeric-value width
) 0)
1265 t t t
1 'cua--left-fill-rectangle
))
1267 (defun cua-shell-command-on-rectangle (replace command
)
1268 "Run shell command on rectangle like `shell-command-on-region'.
1269 With prefix arg, replace rectangle with output from command."
1272 (read-from-minibuffer "Shell command on rectangle: "
1274 'shell-command-history
)))
1275 (cua--rectangle-aux-replace -
1 t t replace
1
1277 (shell-command-on-region s e command
1278 replace replace nil
))))
1280 (defun cua-reverse-rectangle ()
1281 "Reverse the lines of the rectangle."
1283 (cua--rectangle-aux-replace 0 t t t t
'reverse-region
))
1285 (defun cua-scroll-rectangle-up ()
1286 "Remove the first line of the rectangle and scroll remaining lines up."
1288 (cua--rectangle-aux-replace 0 t t t t
1290 (if (= (forward-line 1) 0)
1291 (delete-region s
(point))))))
1293 (defun cua-scroll-rectangle-down ()
1294 "Insert a blank line at the first line of the rectangle.
1295 The remaining lines are scrolled down, losing the last line."
1297 (cua--rectangle-aux-replace 0 t t t t
1303 ;;; Insert/delete text to left or right of rectangle
1305 (defun cua-insert-char-rectangle (&optional ch
)
1307 (if buffer-read-only
1309 (cua--indent-rectangle (or ch
(aref (this-single-command-keys) 0)))
1313 (defun cua-indent-rectangle (column)
1314 "Indent rectangle to next tab stop.
1315 With prefix arg, indent to that column."
1318 (cua-insert-char-rectangle ?
\t)
1319 (cua--indent-rectangle nil
(prefix-numeric-value column
))))
1321 (defun cua-delete-char-rectangle ()
1322 "Delete char to left or right of rectangle."
1324 (let ((col (cua--rectangle-insert-col))
1325 (pad (cua--rectangle-virtual-edges))
1327 (cua--rectangle-operation 'corners nil t pad nil
1330 (if (cua--rectangle-right-side t
)
1336 (if (cua--rectangle-right-side t
)
1337 (cua--rectangle-insert-col (current-column))
1338 (setq indent
(- l
(current-column))))))
1340 (when (and indent
(> indent
0))
1341 (aset cua--rectangle
2 (- l indent
))
1342 (aset cua--rectangle
3 (- r indent
1)))))))
1344 (defun cua-help-for-rectangle (&optional help
)
1346 (let ((M (cond ((eq cua--rectangle-modifier-key
'hyper
) " H-")
1347 ((eq cua--rectangle-modifier-key
'super
) " s-")
1348 ((eq cua--rectangle-modifier-key
'alt
) " A-")
1351 (concat (if help
"C-?:help" "")
1352 M
"p:pad" M
"o:open" M
"c:close" M
"b:blank"
1353 M
"s:string" M
"f:fill" M
"i:incr" M
"n:seq"))))
1356 ;;; CUA-like cut & paste for rectangles
1358 (defun cua--cancel-rectangle ()
1361 (cua--deactivate-rectangle))
1362 (setq cua--last-rectangle nil
))
1364 (defun cua--rectangle-post-command ()
1365 (if cua--restored-rectangle
1367 (setq cua--rectangle cua--restored-rectangle
1368 cua--restored-rectangle nil
1370 deactivate-mark nil
)
1371 (cua--rectangle-set-corners))
1372 (when (and cua--rectangle cua--buffer-and-point-before-command
1373 (equal (car cua--buffer-and-point-before-command
) (current-buffer))
1374 (not (= (cdr cua--buffer-and-point-before-command
) (point))))
1375 (if (cua--rectangle-right-side)
1376 (cua--rectangle-right (current-column))
1377 (cua--rectangle-left (current-column)))
1378 (if (>= (cua--rectangle-corner) 2)
1379 (cua--rectangle-bot t
)
1380 (cua--rectangle-top t
))))
1382 (if (and mark-active
1383 (not deactivate-mark
))
1384 (cua--highlight-rectangle)
1385 (cua--deactivate-rectangle))
1386 (when cua--rectangle-overlays
1387 ;; clean-up after revert-buffer
1388 (mapc (function delete-overlay
) cua--rectangle-overlays
)
1389 (setq cua--rectangle-overlays nil
)
1390 (setq deactivate-mark t
)))
1391 (when cua--rect-undo-set-point
1392 (goto-char cua--rect-undo-set-point
)
1393 (setq cua--rect-undo-set-point nil
)))
1395 (add-function :around region-extract-function
1396 #'cua--rectangle-region-extract
)
1397 (add-function :around redisplay-highlight-region-function
1398 #'cua--rectangle-highlight-for-redisplay
)
1400 (defun cua--rectangle-highlight-for-redisplay (orig &rest args
)
1401 (if (not cua--rectangle
) (apply orig args
)
1402 ;; When cua--rectangle is active, just don't highlight at all, since we
1403 ;; already do it elsewhere.
1404 (funcall redisplay-unhighlight-region-function
(nth 3 args
))))
1406 (defun cua--rectangle-region-extract (orig &optional delete
)
1408 ((not cua--rectangle
) (funcall orig delete
))
1409 ((eq delete
'delete-only
) (cua--delete-rectangle))
1411 (let* ((strs (cua--extract-rectangle))
1412 (str (mapconcat #'identity strs
"\n")))
1413 (if delete
(cua--delete-rectangle))
1414 (setq killed-rectangle strs
)
1415 (setq cua--last-killed-rectangle
1416 (cons (and kill-ring
(car kill-ring
)) killed-rectangle
))
1417 (when (eq last-command
'kill-region
)
1418 ;; Try to prevent kill-region from appending this to some
1420 (setq last-command
'kill-region-dont-append
))
1422 (put-text-property 0 (length str
) 'yank-handler
1423 `(rectangle--insert-for-yank ,strs t
)
1429 (defun cua--rect-M/H-key
(key cmd
)
1430 (cua--M/H-key cua--rectangle-keymap key cmd
))
1432 (defun cua--init-rectangles ()
1433 (define-key cua--rectangle-keymap cua-rectangle-mark-key
'cua-clear-rectangle-mark
)
1434 (define-key cua--region-keymap cua-rectangle-mark-key
'cua-toggle-rectangle-mark
)
1435 (unless (eq cua--rectangle-modifier-key
'meta
)
1436 (cua--rect-M/H-key ?\s
'cua-clear-rectangle-mark
)
1437 (cua--M/H-key cua--region-keymap ?\s
'cua-toggle-rectangle-mark
))
1439 (define-key cua--rectangle-keymap
[remap set-mark-command
] 'cua-toggle-rectangle-mark
)
1441 (define-key cua--rectangle-keymap
[remap forward-char
] 'cua-resize-rectangle-right
)
1442 (define-key cua--rectangle-keymap
[remap right-char
] 'cua-resize-rectangle-right
)
1443 (define-key cua--rectangle-keymap
[remap backward-char
] 'cua-resize-rectangle-left
)
1444 (define-key cua--rectangle-keymap
[remap left-char
] 'cua-resize-rectangle-left
)
1445 (define-key cua--rectangle-keymap
[remap next-line
] 'cua-resize-rectangle-down
)
1446 (define-key cua--rectangle-keymap
[remap previous-line
] 'cua-resize-rectangle-up
)
1447 (define-key cua--rectangle-keymap
[remap end-of-line
] 'cua-resize-rectangle-eol
)
1448 (define-key cua--rectangle-keymap
[remap beginning-of-line
] 'cua-resize-rectangle-bol
)
1449 (define-key cua--rectangle-keymap
[remap end-of-buffer
] 'cua-resize-rectangle-bot
)
1450 (define-key cua--rectangle-keymap
[remap beginning-of-buffer
] 'cua-resize-rectangle-top
)
1451 (define-key cua--rectangle-keymap
[remap scroll-down
] 'cua-resize-rectangle-page-up
)
1452 (define-key cua--rectangle-keymap
[remap scroll-up
] 'cua-resize-rectangle-page-down
)
1453 (define-key cua--rectangle-keymap
[remap scroll-down-command
] 'cua-resize-rectangle-page-up
)
1454 (define-key cua--rectangle-keymap
[remap scroll-up-command
] 'cua-resize-rectangle-page-down
)
1456 (define-key cua--rectangle-keymap
[remap delete-backward-char
] 'cua-delete-char-rectangle
)
1457 (define-key cua--rectangle-keymap
[remap backward-delete-char
] 'cua-delete-char-rectangle
)
1458 (define-key cua--rectangle-keymap
[remap backward-delete-char-untabify
] 'cua-delete-char-rectangle
)
1459 (define-key cua--rectangle-keymap
[remap self-insert-command
] 'cua-insert-char-rectangle
)
1461 ;; Catch self-inserting characters which are "stolen" by other modes
1462 (define-key cua--rectangle-keymap
[t]
1463 '(menu-item "sic" cua-insert-char-rectangle :filter cua--self-insert-char-p))
1465 (define-key cua--rectangle-keymap "\r" 'cua-rotate-rectangle)
1466 (define-key cua--rectangle-keymap "\t" 'cua-indent-rectangle)
1468 (define-key cua--rectangle-keymap [(control ??)] 'cua-help-for-rectangle)
1470 (define-key cua--rectangle-keymap [mouse-1] 'cua-mouse-set-rectangle-mark)
1471 (define-key cua--rectangle-keymap [down-mouse-1] 'cua--mouse-ignore)
1472 (define-key cua--rectangle-keymap [drag-mouse-1] 'cua--mouse-ignore)
1473 (define-key cua--rectangle-keymap [mouse-3] 'cua-mouse-save-then-kill-rectangle)
1474 (define-key cua--rectangle-keymap [down-mouse-3] 'cua--mouse-ignore)
1475 (define-key cua--rectangle-keymap [drag-mouse-3] 'cua--mouse-ignore)
1477 (cua--rect-M/H-key 'up 'cua-move-rectangle-up)
1478 (cua--rect-M/H-key 'down 'cua-move-rectangle-down)
1479 (cua--rect-M/H-key 'left 'cua-move-rectangle-left)
1480 (cua--rect-M/H-key 'right 'cua-move-rectangle-right)
1482 (cua--rect-M/H-key '(control up) 'cua-scroll-rectangle-up)
1483 (cua--rect-M/H-key '(control down) 'cua-scroll-rectangle-down)
1485 (cua--rect-M/H-key ?a 'cua-align-rectangle)
1486 (cua--rect-M/H-key ?b 'cua-blank-rectangle)
1487 (cua--rect-M/H-key ?c 'cua-close-rectangle)
1488 (cua--rect-M/H-key ?f 'cua-fill-char-rectangle)
1489 (cua--rect-M/H-key ?i 'cua-incr-rectangle)
1490 (cua--rect-M/H-key ?k 'cua-cut-rectangle-as-text)
1491 (cua--rect-M/H-key ?l 'cua-downcase-rectangle)
1492 (cua--rect-M/H-key ?m 'cua-copy-rectangle-as-text)
1493 (cua--rect-M/H-key ?n 'cua-sequence-rectangle)
1494 (cua--rect-M/H-key ?o 'cua-open-rectangle)
1495 (cua--rect-M/H-key ?p 'cua-toggle-rectangle-virtual-edges)
1496 (cua--rect-M/H-key ?P 'cua-do-rectangle-padding)
1497 (cua--rect-M/H-key ?q 'cua-refill-rectangle)
1498 (cua--rect-M/H-key ?r 'cua-replace-in-rectangle)
1499 (cua--rect-M/H-key ?R 'cua-reverse-rectangle)
1500 (cua--rect-M/H-key ?s 'cua-string-rectangle)
1501 (cua--rect-M/H-key ?t 'cua-text-fill-rectangle)
1502 (cua--rect-M/H-key ?u 'cua-upcase-rectangle)
1503 (cua--rect-M/H-key ?| 'cua-shell-command-on-rectangle)
1504 (cua--rect-M/H-key ?' 'cua-restrict-prefix-rectangle)
1505 (cua--rect-M/H-key ?/ 'cua-restrict-regexp-rectangle)
1507 (setq cua--rectangle-initialized t))
1511 ;;; cua-rect.el ends here