; Merge from origin/emacs-24
[emacs.git] / lisp / rect.el
blobacd3a48f2daad68c851c08201da184d2324f7440
1 ;;; rect.el --- rectangle functions for GNU Emacs -*- lexical-binding:t -*-
3 ;; Copyright (C) 1985, 1999-2015 Free Software Foundation, Inc.
5 ;; Maintainer: Didier Verna <didier@xemacs.org>
6 ;; Keywords: internal
7 ;; Package: emacs
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/>.
24 ;;; Commentary:
26 ;; This package provides the operations on rectangles that are documented
27 ;; in the Emacs manual.
29 ;; ### NOTE: this file was almost completely rewritten by Didier Verna
30 ;; <didier@xemacs.org> in July 1999.
32 ;;; Code:
34 (eval-when-compile (require 'cl-lib))
36 (defgroup rectangle nil
37 "Operations on rectangles."
38 :version "25.1"
39 :group 'editing)
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))
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).
73 (defvar-local rectangle--mark-crutches nil
74 "(POS . COL) to override the column to use for the mark.")
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)))
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)))))))
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)))))
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))))
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)))
140 ;;; Rectangle operations.
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)))
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)))))
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))))
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)))))
219 (defconst spaces-strings
220 '["" " " " " " " " " " " " " " " " "])
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)))
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.
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))
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.
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))))
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))))
260 (defvar killed-rectangle nil
261 "Rectangle for `yank-rectangle' to insert.")
263 ;;;###autoload
264 (defun kill-rectangle (start end &optional fill)
265 "Delete the region-rectangle and save it as the last killed one.
267 When called from a program the rectangle's corners are START and END.
268 You might prefer to use `delete-extract-rectangle' from a program.
270 With a prefix (or a FILL) argument, also fill lines where nothing has to be
271 deleted.
273 If the buffer is read-only, Emacs will beep and refrain from deleting
274 the rectangle, but put it in the kill ring anyway. This means that
275 you can use this command to copy text from a read-only buffer.
276 \(If the variable `kill-read-only-ok' is non-nil, then this won't
277 even beep.)"
278 (interactive "r\nP")
279 (condition-case nil
280 (setq killed-rectangle (delete-extract-rectangle start end fill))
281 ((buffer-read-only text-read-only)
282 (setq deactivate-mark t)
283 (setq killed-rectangle (extract-rectangle start end))
284 (if kill-read-only-ok
285 (progn (message "Read only text copied to kill ring") nil)
286 (barf-if-buffer-read-only)
287 (signal 'text-read-only (list (current-buffer)))))))
289 ;;;###autoload
290 (defun copy-rectangle-as-kill (start end)
291 "Copy the region-rectangle and save it as the last killed one."
292 (interactive "r")
293 (setq killed-rectangle (extract-rectangle start end))
294 (setq deactivate-mark t)
295 (if (called-interactively-p 'interactive)
296 (indicate-copied-region (length (car killed-rectangle)))))
298 ;;;###autoload
299 (defun yank-rectangle ()
300 "Yank the last killed rectangle with upper left corner at point."
301 (interactive "*")
302 (insert-rectangle killed-rectangle))
304 ;;;###autoload
305 (defun insert-rectangle (rectangle)
306 "Insert text of RECTANGLE with upper left corner at point.
307 RECTANGLE's first line is inserted at point, its second
308 line is inserted at a point vertically under point, etc.
309 RECTANGLE should be a list of strings.
310 After this command, the mark is at the upper left corner
311 and point is at the lower right corner."
312 (let ((lines rectangle)
313 (insertcolumn (current-column))
314 (first t))
315 (push-mark)
316 (while lines
317 (or first
318 (progn
319 (forward-line 1)
320 (or (bolp) (insert ?\n))
321 (move-to-column insertcolumn t)))
322 (setq first nil)
323 (insert-for-yank (car lines))
324 (setq lines (cdr lines)))))
326 ;;;###autoload
327 (defun open-rectangle (start end &optional fill)
328 "Blank out the region-rectangle, shifting text right.
330 The text previously in the region is not overwritten by the blanks,
331 but instead winds up to the right of the rectangle.
333 When called from a program the rectangle's corners are START and END.
334 With a prefix (or a FILL) argument, fill with blanks even if there is
335 no text on the right side of the rectangle."
336 (interactive "*r\nP")
337 (apply-on-rectangle 'open-rectangle-line start end fill)
338 (goto-char start))
340 (defun open-rectangle-line (startcol endcol fill)
341 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
342 (unless (and (not fill)
343 (= (point) (point-at-eol)))
344 (indent-to endcol))))
346 (defun delete-whitespace-rectangle-line (startcol _endcol fill)
347 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
348 (unless (= (point) (point-at-eol))
349 (delete-region (point) (progn (skip-syntax-forward " " (point-at-eol))
350 (point))))))
352 ;;;###autoload
353 (defalias 'close-rectangle 'delete-whitespace-rectangle) ;; Old name
355 ;;;###autoload
356 (defun delete-whitespace-rectangle (start end &optional fill)
357 "Delete all whitespace following a specified column in each line.
358 The left edge of the rectangle specifies the position in each line
359 at which whitespace deletion should begin. On each line in the
360 rectangle, all continuous whitespace starting at that column is deleted.
362 When called from a program the rectangle's corners are START and END.
363 With a prefix (or a FILL) argument, also fill too short lines."
364 (interactive "*r\nP")
365 (apply-on-rectangle 'delete-whitespace-rectangle-line start end fill))
367 (defvar string-rectangle-history nil)
368 (defun string-rectangle-line (startcol endcol string delete)
369 (move-to-column startcol t)
370 (if delete
371 (delete-rectangle-line startcol endcol nil))
372 (insert string))
374 (defvar-local rectangle--string-preview-state nil)
375 (defvar-local rectangle--string-preview-window nil)
377 (defun rectangle--string-flush-preview ()
378 (mapc #'delete-overlay (nthcdr 3 rectangle--string-preview-state))
379 (setf (nthcdr 3 rectangle--string-preview-state) nil))
381 (defun rectangle--string-erase-preview ()
382 (with-selected-window rectangle--string-preview-window
383 (rectangle--string-flush-preview)))
385 (defun rectangle--space-to (col)
386 (propertize " " 'display `(space :align-to ,col)))
388 (defface rectangle-preview-face '((t :inherit region))
389 "The face to use for the `string-rectangle' preview.")
391 (defcustom rectangle-preview t
392 "If non-nil, `string-rectangle' will show an-the-fly preview."
393 :type 'boolean)
395 (defun rectangle--string-preview ()
396 (let ((str (minibuffer-contents)))
397 (when (equal str "")
398 (setq str (or (car-safe minibuffer-default)
399 (if (stringp minibuffer-default) minibuffer-default))))
400 (when str (setq str (propertize str 'face 'region)))
401 (with-selected-window rectangle--string-preview-window
402 (unless (or (null rectangle--string-preview-state)
403 (equal str (car rectangle--string-preview-state)))
404 (rectangle--string-flush-preview)
405 (apply-on-rectangle
406 (lambda (startcol endcol)
407 (let* ((sc (move-to-column startcol))
408 (start (if (<= sc startcol) (point)
409 (forward-char -1)
410 (setq sc (current-column))
411 (point)))
412 (ec (move-to-column endcol))
413 (end (point))
414 (ol (make-overlay start end)))
415 (push ol (nthcdr 3 rectangle--string-preview-state))
416 ;; FIXME: The extra spacing doesn't interact correctly with
417 ;; the extra spacing added by the rectangular-region-highlight.
418 (when (< sc startcol)
419 (overlay-put ol 'before-string (rectangle--space-to startcol)))
420 (let ((as (when (< endcol ec)
421 ;; (rectangle--space-to ec)
422 (spaces-string (- ec endcol))
424 (if (= start end)
425 (overlay-put ol 'after-string (if as (concat str as) str))
426 (overlay-put ol 'display str)
427 (if as (overlay-put ol 'after-string as))))))
428 (nth 1 rectangle--string-preview-state)
429 (nth 2 rectangle--string-preview-state))))))
431 ;; FIXME: Should this be turned into inhibit-region-highlight and made to apply
432 ;; to non-rectangular regions as well?
433 (defvar rectangle--inhibit-region-highlight nil)
435 ;;;###autoload
436 (defun string-rectangle (start end string)
437 "Replace rectangle contents with STRING on each line.
438 The length of STRING need not be the same as the rectangle width.
440 Called from a program, takes three args; START, END and STRING."
441 (interactive
442 (progn
443 (make-local-variable 'rectangle--string-preview-state)
444 (make-local-variable 'rectangle--inhibit-region-highlight)
445 (let* ((buf (current-buffer))
446 (win (if (eq (window-buffer) buf) (selected-window)))
447 (start (region-beginning))
448 (end (region-end))
449 (rectangle--string-preview-state `(nil ,start ,end))
450 ;; Rectangle-region-highlighting doesn't work well in the presence
451 ;; of the preview overlays. We could work harder to try and make
452 ;; it work better, but it's easier to just disable it temporarily.
453 (rectangle--inhibit-region-highlight t))
454 (barf-if-buffer-read-only)
455 (list start end
456 (minibuffer-with-setup-hook
457 (lambda ()
458 (setq rectangle--string-preview-window win)
459 (add-hook 'minibuffer-exit-hook
460 #'rectangle--string-erase-preview nil t)
461 (add-hook 'post-command-hook
462 #'rectangle--string-preview nil t))
463 (read-string (format "String rectangle (default %s): "
464 (or (car string-rectangle-history) ""))
465 nil 'string-rectangle-history
466 (car string-rectangle-history)))))))
467 (goto-char
468 (apply-on-rectangle 'string-rectangle-line start end string t)))
470 ;;;###autoload
471 (defalias 'replace-rectangle 'string-rectangle)
473 ;;;###autoload
474 (defun string-insert-rectangle (start end string)
475 "Insert STRING on each line of region-rectangle, shifting text right.
477 When called from a program, the rectangle's corners are START and END.
478 The left edge of the rectangle specifies the column for insertion.
479 This command does not delete or overwrite any existing text."
480 (interactive
481 (progn (barf-if-buffer-read-only)
482 (list
483 (region-beginning)
484 (region-end)
485 (read-string (format "String insert rectangle (default %s): "
486 (or (car string-rectangle-history) ""))
487 nil 'string-rectangle-history
488 (car string-rectangle-history)))))
489 (apply-on-rectangle 'string-rectangle-line start end string nil))
491 ;;;###autoload
492 (defun clear-rectangle (start end &optional fill)
493 "Blank out the region-rectangle.
494 The text previously in the region is overwritten with blanks.
496 When called from a program the rectangle's corners are START and END.
497 With a prefix (or a FILL) argument, also fill with blanks the parts of the
498 rectangle which were empty."
499 (interactive "*r\nP")
500 (apply-on-rectangle 'clear-rectangle-line start end fill))
502 (defun clear-rectangle-line (startcol endcol fill)
503 (let ((pt (point-at-eol)))
504 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
505 (if (and (not fill)
506 (<= (save-excursion (goto-char pt) (current-column)) endcol))
507 (delete-region (point) pt)
508 ;; else
509 (setq pt (point))
510 (move-to-column endcol t)
511 (setq endcol (current-column))
512 (delete-region pt (point))
513 (indent-to endcol)))))
515 ;; Line numbers for `rectangle-number-line-callback'.
516 (defvar rectangle-number-line-counter)
518 (defun rectangle-number-line-callback (start _end format-string)
519 (move-to-column start t)
520 (insert (format format-string rectangle-number-line-counter))
521 (setq rectangle-number-line-counter
522 (1+ rectangle-number-line-counter)))
524 (defun rectangle--default-line-number-format (start end start-at)
525 (concat "%"
526 (int-to-string (length (int-to-string (+ (count-lines start end)
527 start-at))))
528 "d "))
530 ;;;###autoload
531 (defun rectangle-number-lines (start end start-at &optional format)
532 "Insert numbers in front of the region-rectangle.
534 START-AT, if non-nil, should be a number from which to begin
535 counting. FORMAT, if non-nil, should be a format string to pass
536 to `format' along with the line count. When called interactively
537 with a prefix argument, prompt for START-AT and FORMAT."
538 (interactive
539 (if current-prefix-arg
540 (let* ((start (region-beginning))
541 (end (region-end))
542 (start-at (read-number "Number to count from: " 1)))
543 (list start end start-at
544 (read-string "Format string: "
545 (rectangle--default-line-number-format
546 start end start-at))))
547 (list (region-beginning) (region-end) 1 nil)))
548 (unless format
549 (setq format (rectangle--default-line-number-format start end start-at)))
550 (let ((rectangle-number-line-counter start-at))
551 (apply-on-rectangle 'rectangle-number-line-callback
552 start end format)))
554 ;;; New rectangle integration with kill-ring.
556 ;; FIXME: known problems with the new rectangle support:
557 ;; - lots of commands handle the region without paying attention to its
558 ;; rectangular shape.
560 (add-function :around redisplay-highlight-region-function
561 #'rectangle--highlight-for-redisplay)
562 (add-function :around redisplay-unhighlight-region-function
563 #'rectangle--unhighlight-for-redisplay)
564 (add-function :around region-extract-function
565 #'rectangle--extract-region)
567 (defvar rectangle-mark-mode-map
568 (let ((map (make-sparse-keymap)))
569 (define-key map [?\C-o] 'open-rectangle)
570 (define-key map [?\C-t] 'string-rectangle)
571 (define-key map [remap exchange-point-and-mark]
572 'rectangle-exchange-point-and-mark)
573 (dolist (cmd '(right-char left-char forward-char backward-char
574 next-line previous-line))
575 (define-key map (vector 'remap cmd)
576 (intern (format "rectangle-%s" cmd))))
577 map)
578 "Keymap used while marking a rectangular region.")
580 ;;;###autoload
581 (define-minor-mode rectangle-mark-mode
582 "Toggle the region as rectangular.
583 Activates the region if needed. Only lasts until the region is deactivated."
584 nil nil nil
585 (rectangle--reset-crutches)
586 (when rectangle-mark-mode
587 (add-hook 'deactivate-mark-hook
588 (lambda () (rectangle-mark-mode -1)))
589 (unless (region-active-p)
590 (push-mark (point) t t)
591 (message "Mark set (rectangle mode)"))))
593 (defun rectangle-exchange-point-and-mark (&optional arg)
594 "Like `exchange-point-and-mark' but cycles through the rectangle's corners."
595 (interactive "P")
596 (if arg
597 (progn
598 (setq this-command 'exchange-point-and-mark)
599 (exchange-point-and-mark arg))
600 (let* ((p (point))
601 (repeat (eq this-command last-command))
602 (m (mark))
603 (p<m (< p m))
604 (cols (if p<m (rectangle--pos-cols p m) (rectangle--pos-cols m p)))
605 (cp (if p<m (car cols) (cdr cols)))
606 (cm (if p<m (cdr cols) (car cols))))
607 (if repeat (setq this-command 'exchange-point-and-mark))
608 (rectangle--reset-crutches)
609 (goto-char p)
610 (rectangle--col-pos (if repeat cm cp) 'mark)
611 (set-mark (point))
612 (goto-char m)
613 (rectangle--col-pos (if repeat cp cm) 'point))))
615 (defun rectangle--*-char (cmd n &optional other-cmd)
616 ;; Part of the complexity here is that I'm trying to avoid making assumptions
617 ;; about the L2R/R2L direction of text around point, but this is largely
618 ;; useless since the rectangles implemented in this file are "logical
619 ;; rectangles" and not "visual rectangles", so in the presence of
620 ;; bidirectional text things won't work well anyway.
621 (if (< n 0) (rectangle--*-char other-cmd (- n))
622 (let ((col (rectangle--point-col (point))))
623 (while (> n 0)
624 (let* ((bol (line-beginning-position))
625 (eol (line-end-position))
626 (curcol (current-column))
627 (nextcol
628 (condition-case nil
629 (save-excursion
630 (funcall cmd 1)
631 (cond
632 ((> bol (point)) (- curcol 1))
633 ((< eol (point)) (+ col (1+ n)))
634 (t (current-column))))
635 (end-of-buffer (+ col (1+ n)))
636 (beginning-of-buffer (- curcol 1))))
637 (diff (abs (- nextcol col))))
638 (cond
639 ((and (< nextcol curcol) (< curcol col))
640 (let ((curdiff (- col curcol)))
641 (if (<= curdiff n)
642 (progn (cl-decf n curdiff) (setq col curcol))
643 (setq col (- col n) n 0))))
644 ((< nextcol 0) (ding) (setq n 0 col 0)) ;Bumping into BOL!
645 ((= nextcol curcol) (funcall cmd 1))
646 (t ;; (> nextcol curcol)
647 (if (<= diff n)
648 (progn (cl-decf n diff) (setq col nextcol))
649 (setq col (if (< col nextcol) (+ col n) (- col n)) n 0))))))
650 ;; FIXME: This rectangle--col-pos's move-to-column is wasted!
651 (rectangle--col-pos col 'point))))
653 (defun rectangle-right-char (&optional n)
654 "Like `right-char' but steps into wide chars and moves past EOL."
655 (interactive "p") (rectangle--*-char #'right-char n #'left-char))
656 (defun rectangle-left-char (&optional n)
657 "Like `left-char' but steps into wide chars and moves past EOL."
658 (interactive "p") (rectangle--*-char #'left-char n #'right-char))
660 (defun rectangle-forward-char (&optional n)
661 "Like `forward-char' but steps into wide chars and moves past EOL."
662 (interactive "p") (rectangle--*-char #'forward-char n #'backward-char))
663 (defun rectangle-backward-char (&optional n)
664 "Like `backward-char' but steps into wide chars and moves past EOL."
665 (interactive "p") (rectangle--*-char #'backward-char n #'forward-char))
667 (defun rectangle-next-line (&optional n)
668 "Like `next-line' but steps into wide chars and moves past EOL.
669 Ignores `line-move-visual'."
670 (interactive "p")
671 (let ((col (rectangle--point-col (point))))
672 (forward-line n)
673 (rectangle--col-pos col 'point)))
674 (defun rectangle-previous-line (&optional n)
675 "Like `previous-line' but steps into wide chars and moves past EOL.
676 Ignores `line-move-visual'."
677 (interactive "p")
678 (let ((col (rectangle--point-col (point))))
679 (forward-line (- n))
680 (rectangle--col-pos col 'point)))
683 (defun rectangle--extract-region (orig &optional delete)
684 (if (not rectangle-mark-mode)
685 (funcall orig delete)
686 (let* ((strs (funcall (if delete
687 #'delete-extract-rectangle
688 #'extract-rectangle)
689 (region-beginning) (region-end)))
690 (str (mapconcat #'identity strs "\n")))
691 (when (eq last-command 'kill-region)
692 ;; Try to prevent kill-region from appending this to some
693 ;; earlier element.
694 (setq last-command 'kill-region-dont-append))
695 (when strs
696 (put-text-property 0 (length str) 'yank-handler
697 `(rectangle--insert-for-yank ,strs t)
698 str)
699 str))))
701 (defun rectangle--insert-for-yank (strs)
702 (push (point) buffer-undo-list)
703 (let ((undo-at-start buffer-undo-list))
704 (insert-rectangle strs)
705 (setq yank-undo-function
706 (lambda (_start _end)
707 (undo-start)
708 (setcar undo-at-start nil) ;Turn it into a boundary.
709 (while (not (eq pending-undo-list (cdr undo-at-start)))
710 (undo-more 1))))))
712 (defun rectangle--place-cursor (leftcol left str)
713 (let ((pc (window-parameter nil 'rectangle--point-crutches)))
714 (if (and (eq left (car pc)) (eq leftcol (cdr pc)))
715 (put-text-property 0 1 'cursor 1 str))))
717 (defun rectangle--highlight-for-redisplay (orig start end window rol)
718 (cond
719 ((not rectangle-mark-mode)
720 (funcall orig start end window rol))
721 (rectangle--inhibit-region-highlight
722 (funcall redisplay-unhighlight-region-function rol)
723 nil)
724 ((and (eq 'rectangle (car-safe rol))
725 (eq (nth 1 rol) (buffer-chars-modified-tick))
726 (eq start (nth 2 rol))
727 (eq end (nth 3 rol))
728 (equal (rectangle--crutches) (nth 4 rol)))
729 rol)
731 (save-excursion
732 (let* ((nrol nil)
733 (old (if (eq 'rectangle (car-safe rol))
734 (nthcdr 5 rol)
735 (funcall redisplay-unhighlight-region-function rol)
736 nil)))
737 (cl-assert (eq (window-buffer window) (current-buffer)))
738 ;; `rectangle--pos-cols' looks up the `selected-window's parameter!
739 (with-selected-window window
740 (apply-on-rectangle
741 (lambda (leftcol rightcol)
742 (let* ((mleft (move-to-column leftcol))
743 (left (point))
744 ;; BEWARE: In the presence of other overlays with
745 ;; before/after/display-strings, this happens to move to
746 ;; the column "as if the overlays were not applied", which
747 ;; is sometimes what we want, tho it can be
748 ;; considered a bug in move-to-column (it should arguably
749 ;; pay attention to the before/after-string/display
750 ;; properties when computing the column).
751 (mright (move-to-column rightcol))
752 (right (point))
754 (if (not old)
755 (let ((ol (make-overlay left right)))
756 (overlay-put ol 'window window)
757 (overlay-put ol 'face 'region)
759 (let ((ol (pop old)))
760 (move-overlay ol left right (current-buffer))
761 ol))))
762 ;; `move-to-column' may stop before the column (if bumping into
763 ;; EOL) or overshoot it a little, when column is in the middle
764 ;; of a char.
765 (cond
766 ((< mleft leftcol) ;`leftcol' is past EOL.
767 (overlay-put ol 'before-string (rectangle--space-to leftcol))
768 (setq mright (max mright leftcol)))
769 ((and (> mleft leftcol) ;`leftcol' is in the middle of a char.
770 (eq (char-before left) ?\t))
771 (setq left (1- left))
772 (move-overlay ol left right)
773 (goto-char left)
774 (overlay-put ol 'before-string (rectangle--space-to leftcol)))
775 ((overlay-get ol 'before-string)
776 (overlay-put ol 'before-string nil)))
777 (cond
778 ;; While doing rectangle--string-preview, the two sets of
779 ;; overlays steps on the other's toes. I fixed some of the
780 ;; problems, but others remain. The main one is the two
781 ;; (rectangle--space-to rightcol) below which try to virtually
782 ;; insert missing text, but during "preview", the text is not
783 ;; missing (it's provided by preview's own overlay).
784 (rectangle--string-preview-state
785 (if (overlay-get ol 'after-string)
786 (overlay-put ol 'after-string nil)))
787 ((< mright rightcol) ;`rightcol' is past EOL.
788 (let ((str (rectangle--space-to rightcol)))
789 (put-text-property 0 (length str) 'face 'region str)
790 ;; If cursor happens to be here, draw it at the right place.
791 (rectangle--place-cursor leftcol left str)
792 (overlay-put ol 'after-string str)))
793 ((and (> mright rightcol) ;`rightcol's in the middle of a char.
794 (eq (char-before right) ?\t))
795 (setq right (1- right))
796 (move-overlay ol left right)
797 (if (= rightcol leftcol)
798 (overlay-put ol 'after-string nil)
799 (goto-char right)
800 (let ((str (rectangle--space-to rightcol)))
801 (put-text-property 0 (length str) 'face 'region str)
802 (when (= left right)
803 (rectangle--place-cursor leftcol left str))
804 (overlay-put ol 'after-string str))))
805 ((overlay-get ol 'after-string)
806 (overlay-put ol 'after-string nil)))
807 (when (and (= leftcol rightcol) (display-graphic-p))
808 ;; Make zero-width rectangles visible!
809 (overlay-put ol 'after-string
810 (concat (propertize " "
811 'face '(region (:height 0.2)))
812 (overlay-get ol 'after-string))))
813 (push ol nrol)))
814 start end))
815 (mapc #'delete-overlay old)
816 `(rectangle ,(buffer-chars-modified-tick)
817 ,start ,end ,(rectangle--crutches)
818 ,@nrol))))))
820 (defun rectangle--unhighlight-for-redisplay (orig rol)
821 (if (not (eq 'rectangle (car-safe rol)))
822 (funcall orig rol)
823 (mapc #'delete-overlay (nthcdr 5 rol))
824 (setcar (cdr rol) nil)))
826 (provide 'rect)
828 ;;; rect.el ends here