]> code.delx.au - gnu-emacs/blob - lisp/rect.el
Remove some face aliases obsoleted in 22.1
[gnu-emacs] / lisp / rect.el
1 ;;; rect.el --- rectangle functions for GNU Emacs -*- lexical-binding:t -*-
2
3 ;; Copyright (C) 1985, 1999-2016 Free Software Foundation, Inc.
4
5 ;; Maintainer: Didier Verna <didier@xemacs.org>
6 ;; Keywords: internal
7 ;; Package: emacs
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This package provides the operations on rectangles that are documented
27 ;; in the Emacs manual.
28
29 ;; ### NOTE: this file was almost completely rewritten by Didier Verna
30 ;; <didier@xemacs.org> in July 1999.
31
32 ;;; Code:
33
34 (eval-when-compile (require 'cl-lib))
35
36 (defgroup rectangle nil
37 "Operations on rectangles."
38 :version "25.1"
39 :group 'editing)
40
41 ;; FIXME: this function should be replaced by `apply-on-rectangle'
42 (defun operate-on-rectangle (function start end coerce-tabs)
43 "Call FUNCTION for each line of rectangle with corners at START, END.
44 If COERCE-TABS is non-nil, convert multi-column characters
45 that span the starting or ending columns on any line
46 to multiple spaces before calling FUNCTION.
47 FUNCTION is called with three arguments:
48 position of start of segment of this line within the rectangle,
49 number of columns that belong to rectangle but are before that position,
50 number of columns that belong to rectangle but are after point.
51 Point is at the end of the segment of this line within the rectangle."
52 (apply-on-rectangle
53 (lambda (startcol endcol)
54 (let (startpos begextra endextra)
55 (move-to-column startcol coerce-tabs)
56 (setq begextra (- (current-column) startcol))
57 (setq startpos (point))
58 (move-to-column endcol coerce-tabs)
59 ;; If we overshot, move back one character
60 ;; so that endextra will be positive.
61 (if (and (not coerce-tabs) (> (current-column) endcol))
62 (backward-char 1))
63 (setq endextra (- endcol (current-column)))
64 (if (< begextra 0)
65 (setq endextra (+ endextra begextra)
66 begextra 0))
67 (funcall function startpos begextra endextra)))
68 start end))
69
70 ;;; Crutches to let rectangle's corners be where point can't be
71 ;; (e.g. in the middle of a TAB, or past the EOL).
72
73 (defvar-local rectangle--mark-crutches nil
74 "(POS . COL) to override the column to use for the mark.")
75
76 (defun rectangle--pos-cols (start end &optional window)
77 ;; At this stage, we don't know which of start/end is point/mark :-(
78 ;; And in case start=end, it might still be that point and mark have
79 ;; different crutches!
80 (let ((cw (window-parameter window 'rectangle--point-crutches)))
81 (cond
82 ((eq start (car cw))
83 (let ((sc (cdr cw))
84 (ec (if (eq end (car rectangle--mark-crutches))
85 (cdr rectangle--mark-crutches)
86 (if rectangle--mark-crutches
87 (setq rectangle--mark-crutches nil))
88 (goto-char end) (current-column))))
89 (if (eq start end) (cons (min sc ec) (max sc ec)) (cons sc ec))))
90 ((eq end (car cw))
91 (if (eq start (car rectangle--mark-crutches))
92 (cons (cdr rectangle--mark-crutches) (cdr cw))
93 (if rectangle--mark-crutches (setq rectangle--mark-crutches nil))
94 (cons (progn (goto-char start) (current-column)) (cdr cw))))
95 ((progn
96 (if cw (setf (window-parameter nil 'rectangle--point-crutches) nil))
97 (eq start (car rectangle--mark-crutches)))
98 (let ((sc (cdr rectangle--mark-crutches))
99 (ec (progn (goto-char end) (current-column))))
100 (if (eq start end) (cons (min sc ec) (max sc ec)) (cons sc ec))))
101 ((eq end (car rectangle--mark-crutches))
102 (cons (progn (goto-char start) (current-column))
103 (cdr rectangle--mark-crutches)))
104 (t
105 (if rectangle--mark-crutches (setq rectangle--mark-crutches nil))
106 (cons (progn (goto-char start) (current-column))
107 (progn (goto-char end) (current-column)))))))
108
109 (defun rectangle--col-pos (col kind)
110 (let ((c (move-to-column col)))
111 (if (= c col)
112 (if (eq kind 'point)
113 (if (window-parameter nil 'rectangle--point-crutches)
114 (setf (window-parameter nil 'rectangle--point-crutches) nil))
115 (if rectangle--mark-crutches (setq rectangle--mark-crutches nil)))
116 ;; If move-to-column overshot, move back one char so we're
117 ;; at the position where rectangle--highlight-for-redisplay
118 ;; will add the overlay (so that the cursor can be drawn at the
119 ;; right place).
120 (when (> c col) (forward-char -1))
121 (setf (if (eq kind 'point)
122 (window-parameter nil 'rectangle--point-crutches)
123 rectangle--mark-crutches)
124 (cons (point) col)))))
125
126 (defun rectangle--point-col (pos)
127 (let ((pc (window-parameter nil 'rectangle--point-crutches)))
128 (if (eq pos (car pc)) (cdr pc)
129 (goto-char pos)
130 (current-column))))
131
132 (defun rectangle--crutches ()
133 (cons rectangle--mark-crutches
134 (window-parameter nil 'rectangle--point-crutches)))
135 (defun rectangle--reset-crutches ()
136 (kill-local-variable 'rectangle--mark-crutches)
137 (if (window-parameter nil 'rectangle--point-crutches)
138 (setf (window-parameter nil 'rectangle--point-crutches) nil)))
139
140 ;;; Rectangle operations.
141
142 (defun apply-on-rectangle (function start end &rest args)
143 "Call FUNCTION for each line of rectangle with corners at START, END.
144 FUNCTION is called with two arguments: the start and end columns of the
145 rectangle, plus ARGS extra arguments. Point is at the beginning of line when
146 the function is called.
147 The final point after the last operation will be returned."
148 (save-excursion
149 (let* ((cols (rectangle--pos-cols start end))
150 (startcol (car cols))
151 (endcol (cdr cols))
152 (startpt (progn (goto-char start) (line-beginning-position)))
153 (endpt (progn (goto-char end)
154 (copy-marker (line-end-position))))
155 final-point)
156 ;; Ensure the start column is the left one.
157 (if (< endcol startcol)
158 (let ((col startcol))
159 (setq startcol endcol endcol col)))
160 ;; Start looping over lines.
161 (goto-char startpt)
162 (while
163 (progn
164 (apply function startcol endcol args)
165 (setq final-point (point))
166 (and (zerop (forward-line 1)) (bolp)
167 (<= (point) endpt))))
168 final-point)))
169
170 (defun delete-rectangle-line (startcol endcol fill)
171 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
172 (delete-region (point)
173 (progn (move-to-column endcol 'coerce)
174 (point)))))
175
176 (defun delete-extract-rectangle-line (startcol endcol lines fill)
177 (let ((pt (point-at-eol)))
178 (if (< (move-to-column startcol (if fill t 'coerce)) startcol)
179 (setcdr lines (cons (spaces-string (- endcol startcol))
180 (cdr lines)))
181 ;; else
182 (setq pt (point))
183 (move-to-column endcol t)
184 (setcdr lines (cons (filter-buffer-substring pt (point) t) (cdr lines))))
185 ))
186
187 ;; This is actually the only function that needs to do complicated
188 ;; stuff like what's happening in `operate-on-rectangle', because the
189 ;; buffer might be read-only.
190 (defun extract-rectangle-line (startcol endcol lines)
191 (let (start end begextra endextra line)
192 (move-to-column startcol)
193 (setq start (point)
194 begextra (- (current-column) startcol))
195 (move-to-column endcol)
196 (setq end (point)
197 endextra (- endcol (current-column)))
198 (setq line (buffer-substring start (point)))
199 (if (< begextra 0)
200 (setq endextra (+ endextra begextra)
201 begextra 0))
202 (if (< endextra 0)
203 (setq endextra 0))
204 (goto-char start)
205 (while (search-forward "\t" end t)
206 (let ((width (- (current-column)
207 (save-excursion (forward-char -1)
208 (current-column)))))
209 (setq line (concat (substring line 0 (- (point) end 1))
210 (spaces-string width)
211 (substring line (+ (length line)
212 (- (point) end)))))))
213 (if (or (> begextra 0) (> endextra 0))
214 (setq line (concat (spaces-string begextra)
215 line
216 (spaces-string endextra))))
217 (setcdr lines (cons line (cdr lines)))))
218
219 (defconst spaces-strings
220 '["" " " " " " " " " " " " " " " " "])
221
222 (defun spaces-string (n)
223 "Return a string with N spaces."
224 (if (<= n 8) (aref spaces-strings n)
225 (make-string n ?\s)))
226
227 ;;;###autoload
228 (defun delete-rectangle (start end &optional fill)
229 "Delete (don't save) text in the region-rectangle.
230 The same range of columns is deleted in each line starting with the
231 line where the region begins and ending with the line where the region
232 ends.
233
234 When called from a program the rectangle's corners are START and END.
235 With a prefix (or a FILL) argument, also fill lines where nothing has
236 to be deleted."
237 (interactive "*r\nP")
238 (apply-on-rectangle 'delete-rectangle-line start end fill))
239
240 ;;;###autoload
241 (defun delete-extract-rectangle (start end &optional fill)
242 "Delete the contents of the rectangle with corners at START and END.
243 Return it as a list of strings, one for each line of the rectangle.
244
245 When called from a program the rectangle's corners are START and END.
246 With an optional FILL argument, also fill lines where nothing has to be
247 deleted."
248 (let ((lines (list nil)))
249 (apply-on-rectangle 'delete-extract-rectangle-line start end lines fill)
250 (nreverse (cdr lines))))
251
252 ;;;###autoload
253 (defun extract-rectangle (start end)
254 "Return the contents of the rectangle with corners at START and END.
255 Return it as a list of strings, one for each line of the rectangle."
256 (let ((lines (list nil)))
257 (apply-on-rectangle 'extract-rectangle-line start end lines)
258 (nreverse (cdr lines))))
259
260 (defun extract-rectangle-bounds (start end)
261 "Return the bounds of the rectangle with corners at START and END.
262 Return it as a list of (START . END) positions, one for each line of
263 the rectangle."
264 (let (bounds)
265 (apply-on-rectangle
266 (lambda (startcol endcol)
267 (move-to-column startcol)
268 (push (cons (prog1 (point) (move-to-column endcol)) (point))
269 bounds))
270 start end)
271 (nreverse bounds)))
272
273 (defvar killed-rectangle nil
274 "Rectangle for `yank-rectangle' to insert.")
275
276 ;;;###autoload
277 (defun kill-rectangle (start end &optional fill)
278 "Delete the region-rectangle and save it as the last killed one.
279
280 When called from a program the rectangle's corners are START and END.
281 You might prefer to use `delete-extract-rectangle' from a program.
282
283 With a prefix (or a FILL) argument, also fill lines where nothing has to be
284 deleted.
285
286 If the buffer is read-only, Emacs will beep and refrain from deleting
287 the rectangle, but put it in the kill ring anyway. This means that
288 you can use this command to copy text from a read-only buffer.
289 \(If the variable `kill-read-only-ok' is non-nil, then this won't
290 even beep.)"
291 (interactive "r\nP")
292 (condition-case nil
293 (setq killed-rectangle (delete-extract-rectangle start end fill))
294 ((buffer-read-only text-read-only)
295 (setq deactivate-mark t)
296 (setq killed-rectangle (extract-rectangle start end))
297 (if kill-read-only-ok
298 (progn (message "Read only text copied to kill ring") nil)
299 (barf-if-buffer-read-only)
300 (signal 'text-read-only (list (current-buffer)))))))
301
302 ;;;###autoload
303 (defun copy-rectangle-as-kill (start end)
304 "Copy the region-rectangle and save it as the last killed one."
305 (interactive "r")
306 (setq killed-rectangle (extract-rectangle start end))
307 (setq deactivate-mark t)
308 (if (called-interactively-p 'interactive)
309 (indicate-copied-region (length (car killed-rectangle)))))
310
311 ;;;###autoload
312 (defun yank-rectangle ()
313 "Yank the last killed rectangle with upper left corner at point."
314 (interactive "*")
315 (insert-rectangle killed-rectangle))
316
317 ;;;###autoload
318 (defun insert-rectangle (rectangle)
319 "Insert text of RECTANGLE with upper left corner at point.
320 RECTANGLE's first line is inserted at point, its second
321 line is inserted at a point vertically under point, etc.
322 RECTANGLE should be a list of strings.
323 After this command, the mark is at the upper left corner
324 and point is at the lower right corner."
325 (let ((lines rectangle)
326 (insertcolumn (current-column))
327 (first t))
328 (push-mark)
329 (while lines
330 (or first
331 (progn
332 (forward-line 1)
333 (or (bolp) (insert ?\n))
334 (move-to-column insertcolumn t)))
335 (setq first nil)
336 (insert-for-yank (car lines))
337 (setq lines (cdr lines)))))
338
339 ;;;###autoload
340 (defun open-rectangle (start end &optional fill)
341 "Blank out the region-rectangle, shifting text right.
342
343 The text previously in the region is not overwritten by the blanks,
344 but instead winds up to the right of the rectangle.
345
346 When called from a program the rectangle's corners are START and END.
347 With a prefix (or a FILL) argument, fill with blanks even if there is
348 no text on the right side of the rectangle."
349 (interactive "*r\nP")
350 (apply-on-rectangle 'open-rectangle-line start end fill)
351 (goto-char start))
352
353 (defun open-rectangle-line (startcol endcol fill)
354 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
355 (unless (and (not fill)
356 (= (point) (point-at-eol)))
357 (indent-to endcol))))
358
359 (defun delete-whitespace-rectangle-line (startcol _endcol fill)
360 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
361 (unless (= (point) (point-at-eol))
362 (delete-region (point) (progn (skip-syntax-forward " " (point-at-eol))
363 (point))))))
364
365 ;;;###autoload
366 (defalias 'close-rectangle 'delete-whitespace-rectangle) ;; Old name
367
368 ;;;###autoload
369 (defun delete-whitespace-rectangle (start end &optional fill)
370 "Delete all whitespace following a specified column in each line.
371 The left edge of the rectangle specifies the position in each line
372 at which whitespace deletion should begin. On each line in the
373 rectangle, all contiguous whitespace starting at that column is deleted.
374
375 When called from a program the rectangle's corners are START and END.
376 With a prefix (or a FILL) argument, also fill too short lines."
377 (interactive "*r\nP")
378 (apply-on-rectangle 'delete-whitespace-rectangle-line start end fill))
379
380 (defvar string-rectangle-history nil)
381 (defun string-rectangle-line (startcol endcol string delete)
382 (move-to-column startcol t)
383 (if delete
384 (delete-rectangle-line startcol endcol nil))
385 (insert string))
386
387 (defvar-local rectangle--string-preview-state nil)
388 (defvar-local rectangle--string-preview-window nil)
389
390 (defun rectangle--string-flush-preview ()
391 (mapc #'delete-overlay (nthcdr 3 rectangle--string-preview-state))
392 (setf (nthcdr 3 rectangle--string-preview-state) nil))
393
394 (defun rectangle--string-erase-preview ()
395 (with-selected-window rectangle--string-preview-window
396 (rectangle--string-flush-preview)))
397
398 (defun rectangle--space-to (col)
399 (propertize " " 'display `(space :align-to ,col)))
400
401 (defface rectangle-preview '((t :inherit region))
402 "The face to use for the `string-rectangle' preview."
403 :version "25.1")
404
405 (defcustom rectangle-preview t
406 "If non-nil, `string-rectangle' will show an-the-fly preview."
407 :version "25.1"
408 :type 'boolean)
409
410 (defun rectangle--string-preview ()
411 (when rectangle-preview
412 (let ((str (minibuffer-contents)))
413 (when (equal str "")
414 (setq str (or (car-safe minibuffer-default)
415 (if (stringp minibuffer-default) minibuffer-default))))
416 (when str (setq str (propertize str 'face 'rectangle-preview)))
417 (with-selected-window rectangle--string-preview-window
418 (unless (or (null rectangle--string-preview-state)
419 (equal str (car rectangle--string-preview-state)))
420 (rectangle--string-flush-preview)
421 (apply-on-rectangle
422 (lambda (startcol endcol)
423 (let* ((sc (move-to-column startcol))
424 (start (if (<= sc startcol) (point)
425 (forward-char -1)
426 (setq sc (current-column))
427 (point)))
428 (ec (move-to-column endcol))
429 (end (point))
430 (ol (make-overlay start end)))
431 (push ol (nthcdr 3 rectangle--string-preview-state))
432 ;; FIXME: The extra spacing doesn't interact correctly with
433 ;; the extra spacing added by the rectangular-region-highlight.
434 (when (< sc startcol)
435 (overlay-put ol 'before-string (rectangle--space-to startcol)))
436 (let ((as (when (< endcol ec)
437 ;; (rectangle--space-to ec)
438 (spaces-string (- ec endcol))
439 )))
440 (if (= start end)
441 (overlay-put ol 'after-string (if as (concat str as) str))
442 (overlay-put ol 'display str)
443 (if as (overlay-put ol 'after-string as))))))
444 (nth 1 rectangle--string-preview-state)
445 (nth 2 rectangle--string-preview-state)))))))
446
447 ;; FIXME: Should this be turned into inhibit-region-highlight and made to apply
448 ;; to non-rectangular regions as well?
449 (defvar rectangle--inhibit-region-highlight nil)
450
451 ;;;###autoload
452 (defun string-rectangle (start end string)
453 "Replace rectangle contents with STRING on each line.
454 The length of STRING need not be the same as the rectangle width.
455
456 Called from a program, takes three args; START, END and STRING."
457 (interactive
458 (progn
459 (make-local-variable 'rectangle--string-preview-state)
460 (make-local-variable 'rectangle--inhibit-region-highlight)
461 (let* ((buf (current-buffer))
462 (win (if (eq (window-buffer) buf) (selected-window)))
463 (start (region-beginning))
464 (end (region-end))
465 (rectangle--string-preview-state `(nil ,start ,end))
466 ;; Rectangle-region-highlighting doesn't work well in the presence
467 ;; of the preview overlays. We could work harder to try and make
468 ;; it work better, but it's easier to just disable it temporarily.
469 (rectangle--inhibit-region-highlight t))
470 (barf-if-buffer-read-only)
471 (list start end
472 (minibuffer-with-setup-hook
473 (lambda ()
474 (setq rectangle--string-preview-window win)
475 (add-hook 'minibuffer-exit-hook
476 #'rectangle--string-erase-preview nil t)
477 (add-hook 'post-command-hook
478 #'rectangle--string-preview nil t))
479 (read-string (format "String rectangle (default %s): "
480 (or (car string-rectangle-history) ""))
481 nil 'string-rectangle-history
482 (car string-rectangle-history)))))))
483 ;; If we undo this change, we want to have the point back where we
484 ;; are now, and not after the first line in the rectangle (which is
485 ;; the first line to be changed by the following command).
486 (unless (eq buffer-undo-list t)
487 (push (point) buffer-undo-list))
488 (goto-char
489 (apply-on-rectangle 'string-rectangle-line start end string t)))
490
491 ;;;###autoload
492 (defalias 'replace-rectangle 'string-rectangle)
493
494 ;;;###autoload
495 (defun string-insert-rectangle (start end string)
496 "Insert STRING on each line of region-rectangle, shifting text right.
497
498 When called from a program, the rectangle's corners are START and END.
499 The left edge of the rectangle specifies the column for insertion.
500 This command does not delete or overwrite any existing text."
501 (interactive
502 (progn (barf-if-buffer-read-only)
503 (list
504 (region-beginning)
505 (region-end)
506 (read-string (format "String insert rectangle (default %s): "
507 (or (car string-rectangle-history) ""))
508 nil 'string-rectangle-history
509 (car string-rectangle-history)))))
510 (apply-on-rectangle 'string-rectangle-line start end string nil))
511
512 ;;;###autoload
513 (defun clear-rectangle (start end &optional fill)
514 "Blank out the region-rectangle.
515 The text previously in the region is overwritten with blanks.
516
517 When called from a program the rectangle's corners are START and END.
518 With a prefix (or a FILL) argument, also fill with blanks the parts of the
519 rectangle which were empty."
520 (interactive "*r\nP")
521 (apply-on-rectangle 'clear-rectangle-line start end fill))
522
523 (defun clear-rectangle-line (startcol endcol fill)
524 (let ((pt (point-at-eol)))
525 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
526 (if (and (not fill)
527 (<= (save-excursion (goto-char pt) (current-column)) endcol))
528 (delete-region (point) pt)
529 ;; else
530 (setq pt (point))
531 (move-to-column endcol t)
532 (setq endcol (current-column))
533 (delete-region pt (point))
534 (indent-to endcol)))))
535
536 ;; Line numbers for `rectangle-number-line-callback'.
537 (defvar rectangle-number-line-counter)
538
539 (defun rectangle-number-line-callback (start _end format-string)
540 (move-to-column start t)
541 (insert (format format-string rectangle-number-line-counter))
542 (setq rectangle-number-line-counter
543 (1+ rectangle-number-line-counter)))
544
545 (defun rectangle--default-line-number-format (start end start-at)
546 (concat "%"
547 (int-to-string (length (int-to-string (+ (count-lines start end)
548 start-at))))
549 "d "))
550
551 ;;;###autoload
552 (defun rectangle-number-lines (start end start-at &optional format)
553 "Insert numbers in front of the region-rectangle.
554
555 START-AT, if non-nil, should be a number from which to begin
556 counting. FORMAT, if non-nil, should be a format string to pass
557 to `format' along with the line count. When called interactively
558 with a prefix argument, prompt for START-AT and FORMAT."
559 (interactive
560 (if current-prefix-arg
561 (let* ((start (region-beginning))
562 (end (region-end))
563 (start-at (read-number "Number to count from: " 1)))
564 (list start end start-at
565 (read-string "Format string: "
566 (rectangle--default-line-number-format
567 start end start-at))))
568 (list (region-beginning) (region-end) 1 nil)))
569 (unless format
570 (setq format (rectangle--default-line-number-format start end start-at)))
571 (let ((rectangle-number-line-counter start-at))
572 (apply-on-rectangle 'rectangle-number-line-callback
573 start end format)))
574
575 ;;; New rectangle integration with kill-ring.
576
577 ;; FIXME: known problems with the new rectangle support:
578 ;; - lots of commands handle the region without paying attention to its
579 ;; rectangular shape.
580
581 (add-function :around redisplay-highlight-region-function
582 #'rectangle--highlight-for-redisplay)
583 (add-function :around redisplay-unhighlight-region-function
584 #'rectangle--unhighlight-for-redisplay)
585 (add-function :around region-extract-function
586 #'rectangle--extract-region)
587 (add-function :around region-insert-function
588 #'rectangle--insert-region)
589
590 (defvar rectangle-mark-mode-map
591 (let ((map (make-sparse-keymap)))
592 (define-key map [?\C-o] 'open-rectangle)
593 (define-key map [?\C-t] 'string-rectangle)
594 (define-key map [remap exchange-point-and-mark]
595 'rectangle-exchange-point-and-mark)
596 (dolist (cmd '(right-char left-char forward-char backward-char
597 next-line previous-line))
598 (define-key map (vector 'remap cmd)
599 (intern (format "rectangle-%s" cmd))))
600 map)
601 "Keymap used while marking a rectangular region.")
602
603 ;;;###autoload
604 (define-minor-mode rectangle-mark-mode
605 "Toggle the region as rectangular.
606 Activates the region if needed. Only lasts until the region is deactivated."
607 nil nil nil
608 (rectangle--reset-crutches)
609 (when rectangle-mark-mode
610 (add-hook 'deactivate-mark-hook
611 (lambda () (rectangle-mark-mode -1)))
612 (unless (region-active-p)
613 (push-mark (point) t t)
614 (message "Mark set (rectangle mode)"))))
615
616 (defun rectangle-exchange-point-and-mark (&optional arg)
617 "Like `exchange-point-and-mark' but cycles through the rectangle's corners."
618 (interactive "P")
619 (if arg
620 (progn
621 (setq this-command 'exchange-point-and-mark)
622 (exchange-point-and-mark arg))
623 (let* ((p (point))
624 (repeat (eq this-command last-command))
625 (m (mark))
626 (p<m (< p m))
627 (cols (if p<m (rectangle--pos-cols p m) (rectangle--pos-cols m p)))
628 (cp (if p<m (car cols) (cdr cols)))
629 (cm (if p<m (cdr cols) (car cols))))
630 (if repeat (setq this-command 'exchange-point-and-mark))
631 (rectangle--reset-crutches)
632 (goto-char p)
633 (rectangle--col-pos (if repeat cm cp) 'mark)
634 (set-mark (point))
635 (goto-char m)
636 (rectangle--col-pos (if repeat cp cm) 'point))))
637
638 (defun rectangle--*-char (cmd n &optional other-cmd)
639 ;; Part of the complexity here is that I'm trying to avoid making assumptions
640 ;; about the L2R/R2L direction of text around point, but this is largely
641 ;; useless since the rectangles implemented in this file are "logical
642 ;; rectangles" and not "visual rectangles", so in the presence of
643 ;; bidirectional text things won't work well anyway.
644 (if (< n 0) (rectangle--*-char other-cmd (- n))
645 (let ((col (rectangle--point-col (point))))
646 (while (> n 0)
647 (let* ((bol (line-beginning-position))
648 (eol (line-end-position))
649 (curcol (current-column))
650 (nextcol
651 (condition-case nil
652 (save-excursion
653 (funcall cmd 1)
654 (cond
655 ((> bol (point)) (- curcol 1))
656 ((< eol (point)) (+ col (1+ n)))
657 (t (current-column))))
658 (end-of-buffer (+ col (1+ n)))
659 (beginning-of-buffer (- curcol 1))))
660 (diff (abs (- nextcol col))))
661 (cond
662 ((and (< nextcol curcol) (< curcol col))
663 (let ((curdiff (- col curcol)))
664 (if (<= curdiff n)
665 (progn (cl-decf n curdiff) (setq col curcol))
666 (setq col (- col n) n 0))))
667 ((< nextcol 0) (ding) (setq n 0 col 0)) ;Bumping into BOL!
668 ((= nextcol curcol) (funcall cmd 1))
669 (t ;; (> nextcol curcol)
670 (if (<= diff n)
671 (progn (cl-decf n diff) (setq col nextcol))
672 (setq col (if (< col nextcol) (+ col n) (- col n)) n 0))))))
673 ;; FIXME: This rectangle--col-pos's move-to-column is wasted!
674 (rectangle--col-pos col 'point))))
675
676 (defun rectangle-right-char (&optional n)
677 "Like `right-char' but steps into wide chars and moves past EOL."
678 (interactive "p") (rectangle--*-char #'right-char n #'left-char))
679 (defun rectangle-left-char (&optional n)
680 "Like `left-char' but steps into wide chars and moves past EOL."
681 (interactive "p") (rectangle--*-char #'left-char n #'right-char))
682
683 (defun rectangle-forward-char (&optional n)
684 "Like `forward-char' but steps into wide chars and moves past EOL."
685 (interactive "p") (rectangle--*-char #'forward-char n #'backward-char))
686 (defun rectangle-backward-char (&optional n)
687 "Like `backward-char' but steps into wide chars and moves past EOL."
688 (interactive "p") (rectangle--*-char #'backward-char n #'forward-char))
689
690 (defun rectangle-next-line (&optional n)
691 "Like `next-line' but steps into wide chars and moves past EOL.
692 Ignores `line-move-visual'."
693 (interactive "p")
694 (let ((col (rectangle--point-col (point))))
695 (forward-line n)
696 (rectangle--col-pos col 'point)))
697 (defun rectangle-previous-line (&optional n)
698 "Like `previous-line' but steps into wide chars and moves past EOL.
699 Ignores `line-move-visual'."
700 (interactive "p")
701 (let ((col (rectangle--point-col (point))))
702 (forward-line (- n))
703 (rectangle--col-pos col 'point)))
704
705
706 (defun rectangle--extract-region (orig &optional delete)
707 (cond
708 ((not rectangle-mark-mode)
709 (funcall orig delete))
710 ((eq delete 'bounds)
711 (extract-rectangle-bounds (region-beginning) (region-end)))
712 (t
713 (let* ((strs (funcall (if delete
714 #'delete-extract-rectangle
715 #'extract-rectangle)
716 (region-beginning) (region-end)))
717 (str (mapconcat #'identity strs "\n")))
718 (when (eq last-command 'kill-region)
719 ;; Try to prevent kill-region from appending this to some
720 ;; earlier element.
721 (setq last-command 'kill-region-dont-append))
722 (when strs
723 (put-text-property 0 (length str) 'yank-handler
724 `(rectangle--insert-for-yank ,strs t)
725 str)
726 str)))))
727
728 (defun rectangle--insert-region (orig strings)
729 (cond
730 ((not rectangle-mark-mode)
731 (funcall orig strings))
732 (t
733 (funcall #'insert-rectangle strings))))
734
735 (defun rectangle--insert-for-yank (strs)
736 (push (point) buffer-undo-list)
737 (let ((undo-at-start buffer-undo-list))
738 (insert-rectangle strs)
739 (setq yank-undo-function
740 (lambda (_start _end)
741 (undo-start)
742 (setcar undo-at-start nil) ;Turn it into a boundary.
743 (while (not (eq pending-undo-list (cdr undo-at-start)))
744 (undo-more 1))))))
745
746 (defun rectangle--place-cursor (leftcol left str)
747 (let ((pc (window-parameter nil 'rectangle--point-crutches)))
748 (if (and (eq left (car pc)) (eq leftcol (cdr pc)))
749 (put-text-property 0 1 'cursor 1 str))))
750
751 (defun rectangle--highlight-for-redisplay (orig start end window rol)
752 (cond
753 ((not rectangle-mark-mode)
754 (funcall orig start end window rol))
755 (rectangle--inhibit-region-highlight
756 (funcall redisplay-unhighlight-region-function rol)
757 nil)
758 ((and (eq 'rectangle (car-safe rol))
759 (eq (nth 1 rol) (buffer-chars-modified-tick))
760 (eq start (nth 2 rol))
761 (eq end (nth 3 rol))
762 (equal (rectangle--crutches) (nth 4 rol)))
763 rol)
764 (t
765 (save-excursion
766 (let* ((nrol nil)
767 (old (if (eq 'rectangle (car-safe rol))
768 (nthcdr 5 rol)
769 (funcall redisplay-unhighlight-region-function rol)
770 nil)))
771 (cl-assert (eq (window-buffer window) (current-buffer)))
772 ;; `rectangle--pos-cols' looks up the `selected-window's parameter!
773 (with-selected-window window
774 (apply-on-rectangle
775 (lambda (leftcol rightcol)
776 (let* ((mleft (move-to-column leftcol))
777 (left (point))
778 ;; BEWARE: In the presence of other overlays with
779 ;; before/after/display-strings, this happens to move to
780 ;; the column "as if the overlays were not applied", which
781 ;; is sometimes what we want, tho it can be
782 ;; considered a bug in move-to-column (it should arguably
783 ;; pay attention to the before/after-string/display
784 ;; properties when computing the column).
785 (mright (move-to-column rightcol))
786 (right (point))
787 (ol
788 (if (not old)
789 (let ((ol (make-overlay left right)))
790 (overlay-put ol 'window window)
791 (overlay-put ol 'face 'region)
792 ol)
793 (let ((ol (pop old)))
794 (move-overlay ol left right (current-buffer))
795 ol))))
796 ;; `move-to-column' may stop before the column (if bumping into
797 ;; EOL) or overshoot it a little, when column is in the middle
798 ;; of a char.
799 (cond
800 ((< mleft leftcol) ;`leftcol' is past EOL.
801 (overlay-put ol 'before-string (rectangle--space-to leftcol))
802 (setq mright (max mright leftcol)))
803 ((and (> mleft leftcol) ;`leftcol' is in the middle of a char.
804 (eq (char-before left) ?\t))
805 (setq left (1- left))
806 (move-overlay ol left right)
807 (goto-char left)
808 (overlay-put ol 'before-string (rectangle--space-to leftcol)))
809 ((overlay-get ol 'before-string)
810 (overlay-put ol 'before-string nil)))
811 (cond
812 ;; While doing rectangle--string-preview, the two sets of
813 ;; overlays steps on the other's toes. I fixed some of the
814 ;; problems, but others remain. The main one is the two
815 ;; (rectangle--space-to rightcol) below which try to virtually
816 ;; insert missing text, but during "preview", the text is not
817 ;; missing (it's provided by preview's own overlay).
818 (rectangle--string-preview-state
819 (if (overlay-get ol 'after-string)
820 (overlay-put ol 'after-string nil)))
821 ((< mright rightcol) ;`rightcol' is past EOL.
822 (let ((str (rectangle--space-to rightcol)))
823 (put-text-property 0 (length str) 'face 'region str)
824 ;; If cursor happens to be here, draw it at the right place.
825 (rectangle--place-cursor leftcol left str)
826 (overlay-put ol 'after-string str)))
827 ((and (> mright rightcol) ;`rightcol's in the middle of a char.
828 (eq (char-before right) ?\t))
829 (setq right (1- right))
830 (move-overlay ol left right)
831 (if (= rightcol leftcol)
832 (overlay-put ol 'after-string nil)
833 (goto-char right)
834 (let ((str (rectangle--space-to rightcol)))
835 (put-text-property 0 (length str) 'face 'region str)
836 (when (= left right)
837 (rectangle--place-cursor leftcol left str))
838 (overlay-put ol 'after-string str))))
839 ((overlay-get ol 'after-string)
840 (overlay-put ol 'after-string nil)))
841 (when (and (= leftcol rightcol) (display-graphic-p))
842 ;; Make zero-width rectangles visible!
843 (overlay-put ol 'after-string
844 (concat (propertize " "
845 'face '(region (:height 0.2)))
846 (overlay-get ol 'after-string))))
847 (push ol nrol)))
848 start end))
849 (mapc #'delete-overlay old)
850 `(rectangle ,(buffer-chars-modified-tick)
851 ,start ,end ,(rectangle--crutches)
852 ,@nrol))))))
853
854 (defun rectangle--unhighlight-for-redisplay (orig rol)
855 (if (not (eq 'rectangle (car-safe rol)))
856 (funcall orig rol)
857 (mapc #'delete-overlay (nthcdr 5 rol))
858 (setcar (cdr rol) nil)))
859
860 (provide 'rect)
861
862 ;;; rect.el ends here