Avoid the use of ((lambda ...) ...) in lexical-binding code.
[bpt/emacs.git] / lisp / rect.el
CommitLineData
e8af40ee 1;;; rect.el --- rectangle functions for GNU Emacs
6594deb0 2
acaf905b 3;; Copyright (C) 1985, 1999-2012 Free Software Foundation, Inc.
9750e079 4
aa01bed1 5;; Maintainer: Didier Verna <didier@xemacs.org>
d7b4d18f 6;; Keywords: internal
bd78fa1d 7;; Package: emacs
4821e2af 8
a2535589
JA
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
a2535589 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
a2535589
JA
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
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a2535589 23
edbd2f74
ER
24;;; Commentary:
25
e037c34c 26;; This package provides the operations on rectangles that are documented
edbd2f74
ER
27;; in the Emacs manual.
28
5614fd56
CY
29;; ### NOTE: this file was almost completely rewritten by Didier Verna
30;; <didier@xemacs.org> in July 1999.
e417c66f 31
8daffab7
JL
32;;; Global key bindings
33
34;;;###autoload (define-key ctl-x-r-map "c" 'clear-rectangle)
35;;;###autoload (define-key ctl-x-r-map "k" 'kill-rectangle)
36;;;###autoload (define-key ctl-x-r-map "d" 'delete-rectangle)
37;;;###autoload (define-key ctl-x-r-map "y" 'yank-rectangle)
38;;;###autoload (define-key ctl-x-r-map "o" 'open-rectangle)
39;;;###autoload (define-key ctl-x-r-map "t" 'string-rectangle)
99f053cf 40;;;###autoload (define-key ctl-x-r-map "N" 'rectangle-number-lines)
e417c66f 41
4821e2af 42;;; Code:
a2535589 43
5614fd56 44;; FIXME: this function should be replaced by `apply-on-rectangle'
a2535589
JA
45(defun operate-on-rectangle (function start end coerce-tabs)
46 "Call FUNCTION for each line of rectangle with corners at START, END.
47If COERCE-TABS is non-nil, convert multi-column characters
48that span the starting or ending columns on any line
49to multiple spaces before calling FUNCTION.
50FUNCTION is called with three arguments:
51 position of start of segment of this line within the rectangle,
52 number of columns that belong to rectangle but are before that position,
53 number of columns that belong to rectangle but are after point.
54Point is at the end of the segment of this line within the rectangle."
55 (let (startcol startlinepos endcol endlinepos)
56 (save-excursion
57 (goto-char start)
58 (setq startcol (current-column))
59 (beginning-of-line)
60 (setq startlinepos (point)))
61 (save-excursion
62 (goto-char end)
63 (setq endcol (current-column))
64 (forward-line 1)
65 (setq endlinepos (point-marker)))
66 (if (< endcol startcol)
08ce70d1 67 (setq startcol (prog1 endcol (setq endcol startcol))))
bc8ea543
RS
68 (save-excursion
69 (goto-char startlinepos)
70 (while (< (point) endlinepos)
71 (let (startpos begextra endextra)
e40261d0 72 (if coerce-tabs
b9e81d0a 73 (move-to-column startcol t)
e40261d0 74 (move-to-column startcol))
bc8ea543
RS
75 (setq begextra (- (current-column) startcol))
76 (setq startpos (point))
e40261d0 77 (if coerce-tabs
b9e81d0a 78 (move-to-column endcol t)
e40261d0 79 (move-to-column endcol))
daabd795
RS
80 ;; If we overshot, move back one character
81 ;; so that endextra will be positive.
82 (if (and (not coerce-tabs) (> (current-column) endcol))
83 (backward-char 1))
bc8ea543
RS
84 (setq endextra (- endcol (current-column)))
85 (if (< begextra 0)
86 (setq endextra (+ endextra begextra)
87 begextra 0))
88 (funcall function startpos begextra endextra))
89 (forward-line 1)))
a2535589
JA
90 (- endcol startcol)))
91
e417c66f
RS
92(defun apply-on-rectangle (function start end &rest args)
93 "Call FUNCTION for each line of rectangle with corners at START, END.
94FUNCTION is called with two arguments: the start and end columns of the
e037c34c 95rectangle, plus ARGS extra arguments. Point is at the beginning of line when
7509a874
LMI
96the function is called.
97The final point after the last operation will be returned."
98 (let (startcol startpt endcol endpt final-point)
e417c66f
RS
99 (save-excursion
100 (goto-char start)
101 (setq startcol (current-column))
102 (beginning-of-line)
103 (setq startpt (point))
104 (goto-char end)
105 (setq endcol (current-column))
106 (forward-line 1)
107 (setq endpt (point-marker))
108 ;; ensure the start column is the left one.
109 (if (< endcol startcol)
110 (let ((col startcol))
111 (setq startcol endcol endcol col)))
112 ;; start looping over lines
113 (goto-char startpt)
114 (while (< (point) endpt)
115 (apply function startcol endcol args)
7509a874 116 (setq final-point (point))
e417c66f 117 (forward-line 1)))
7509a874 118 final-point))
e417c66f
RS
119
120(defun delete-rectangle-line (startcol endcol fill)
b29b5c24 121 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
b9e81d0a
SM
122 (delete-region (point)
123 (progn (move-to-column endcol 'coerce)
124 (point)))))
e417c66f
RS
125
126(defun delete-extract-rectangle-line (startcol endcol lines fill)
127 (let ((pt (point-at-eol)))
b29b5c24 128 (if (< (move-to-column startcol (if fill t 'coerce)) startcol)
e417c66f
RS
129 (setcdr lines (cons (spaces-string (- endcol startcol))
130 (cdr lines)))
131 ;; else
132 (setq pt (point))
b9e81d0a 133 (move-to-column endcol t)
5c831ccd 134 (setcdr lines (cons (filter-buffer-substring pt (point) t) (cdr lines))))
e417c66f
RS
135 ))
136
5614fd56
CY
137;; This is actually the only function that needs to do complicated
138;; stuff like what's happening in `operate-on-rectangle', because the
139;; buffer might be read-only.
e417c66f
RS
140(defun extract-rectangle-line (startcol endcol lines)
141 (let (start end begextra endextra line)
142 (move-to-column startcol)
143 (setq start (point)
144 begextra (- (current-column) startcol))
145 (move-to-column endcol)
146 (setq end (point)
147 endextra (- endcol (current-column)))
148 (setq line (buffer-substring start (point)))
149 (if (< begextra 0)
150 (setq endextra (+ endextra begextra)
151 begextra 0))
152 (if (< endextra 0)
153 (setq endextra 0))
154 (goto-char start)
a2535589
JA
155 (while (search-forward "\t" end t)
156 (let ((width (- (current-column)
157 (save-excursion (forward-char -1)
158 (current-column)))))
159 (setq line (concat (substring line 0 (- (point) end 1))
160 (spaces-string width)
e417c66f
RS
161 (substring line (+ (length line)
162 (- (point) end)))))))
a2535589
JA
163 (if (or (> begextra 0) (> endextra 0))
164 (setq line (concat (spaces-string begextra)
165 line
166 (spaces-string endextra))))
e417c66f 167 (setcdr lines (cons line (cdr lines)))))
a2535589
JA
168
169(defconst spaces-strings
170 '["" " " " " " " " " " " " " " " " "])
171
172(defun spaces-string (n)
6cda144f 173 "Return a string with N spaces."
a2535589 174 (if (<= n 8) (aref spaces-strings n)
6cda144f 175 (make-string n ?\s)))
f1180544 176
f9f9507e 177;;;###autoload
e417c66f 178(defun delete-rectangle (start end &optional fill)
e037c34c
DL
179 "Delete (don't save) text in the region-rectangle.
180The same range of columns is deleted in each line starting with the
181line where the region begins and ending with the line where the region
182ends.
183
184When called from a program the rectangle's corners are START and END.
185With a prefix (or a FILL) argument, also fill lines where nothing has
186to be deleted."
187 (interactive "*r\nP")
e417c66f 188 (apply-on-rectangle 'delete-rectangle-line start end fill))
a2535589 189
f9f9507e 190;;;###autoload
e417c66f 191(defun delete-extract-rectangle (start end &optional fill)
7db6139a 192 "Delete the contents of the rectangle with corners at START and END.
e037c34c 193Return it as a list of strings, one for each line of the rectangle.
e417c66f 194
e037c34c 195When called from a program the rectangle's corners are START and END.
e417c66f
RS
196With an optional FILL argument, also fill lines where nothing has to be
197deleted."
198 (let ((lines (list nil)))
199 (apply-on-rectangle 'delete-extract-rectangle-line start end lines fill)
200 (nreverse (cdr lines))))
a2535589 201
f9f9507e 202;;;###autoload
a2535589 203(defun extract-rectangle (start end)
e037c34c
DL
204 "Return the contents of the rectangle with corners at START and END.
205Return it as a list of strings, one for each line of the rectangle."
e417c66f
RS
206 (let ((lines (list nil)))
207 (apply-on-rectangle 'extract-rectangle-line start end lines)
208 (nreverse (cdr lines))))
a2535589
JA
209
210(defvar killed-rectangle nil
e037c34c 211 "Rectangle for `yank-rectangle' to insert.")
a2535589 212
f9f9507e 213;;;###autoload
e417c66f 214(defun kill-rectangle (start end &optional fill)
e037c34c
DL
215 "Delete the region-rectangle and save it as the last killed one.
216
217When called from a program the rectangle's corners are START and END.
218You might prefer to use `delete-extract-rectangle' from a program.
e417c66f
RS
219
220With a prefix (or a FILL) argument, also fill lines where nothing has to be
5c831ccd
EZ
221deleted.
222
223If the buffer is read-only, Emacs will beep and refrain from deleting
224the rectangle, but put it in the kill ring anyway. This means that
225you can use this command to copy text from a read-only buffer.
226\(If the variable `kill-read-only-ok' is non-nil, then this won't
227even beep.)"
228 (interactive "r\nP")
229 (condition-case nil
230 (setq killed-rectangle (delete-extract-rectangle start end fill))
231 ((buffer-read-only text-read-only)
232 (setq killed-rectangle (extract-rectangle start end))
233 (if kill-read-only-ok
234 (progn (message "Read only text copied to kill ring") nil)
235 (barf-if-buffer-read-only)
236 (signal 'text-read-only (list (current-buffer)))))))
e417c66f 237
f9f9507e 238;;;###autoload
a2535589
JA
239(defun yank-rectangle ()
240 "Yank the last killed rectangle with upper left corner at point."
e037c34c 241 (interactive "*")
a2535589
JA
242 (insert-rectangle killed-rectangle))
243
f9f9507e 244;;;###autoload
a2535589
JA
245(defun insert-rectangle (rectangle)
246 "Insert text of RECTANGLE with upper left corner at point.
573f9b32
RS
247RECTANGLE's first line is inserted at point, its second
248line is inserted at a point vertically under point, etc.
23317eac
RS
249RECTANGLE should be a list of strings.
250After this command, the mark is at the upper left corner
251and point is at the lower right corner."
a2535589
JA
252 (let ((lines rectangle)
253 (insertcolumn (current-column))
254 (first t))
23317eac 255 (push-mark)
a2535589
JA
256 (while lines
257 (or first
258 (progn
259 (forward-line 1)
260 (or (bolp) (insert ?\n))
b9e81d0a 261 (move-to-column insertcolumn t)))
a2535589 262 (setq first nil)
afa0467f 263 (insert-for-yank (car lines))
a2535589
JA
264 (setq lines (cdr lines)))))
265
f9f9507e 266;;;###autoload
e417c66f 267(defun open-rectangle (start end &optional fill)
e037c34c
DL
268 "Blank out the region-rectangle, shifting text right.
269
270The text previously in the region is not overwritten by the blanks,
271but instead winds up to the right of the rectangle.
e417c66f 272
e037c34c 273When called from a program the rectangle's corners are START and END.
6cda144f
JB
274With a prefix (or a FILL) argument, fill with blanks even if there is
275no text on the right side of the rectangle."
e037c34c 276 (interactive "*r\nP")
e417c66f 277 (apply-on-rectangle 'open-rectangle-line start end fill)
08ce70d1 278 (goto-char start))
a2535589 279
e417c66f 280(defun open-rectangle-line (startcol endcol fill)
b29b5c24 281 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
74be0ade
DL
282 (unless (and (not fill)
283 (= (point) (point-at-eol)))
284 (indent-to endcol))))
e417c66f 285
06b60517 286(defun delete-whitespace-rectangle-line (startcol _endcol fill)
b29b5c24 287 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
e417c66f 288 (unless (= (point) (point-at-eol))
35f901fa 289 (delete-region (point) (progn (skip-syntax-forward " ") (point))))))
a2535589 290
b3a4edce
MR
291;;;###autoload
292(defalias 'close-rectangle 'delete-whitespace-rectangle) ;; Old name
293
ecb079ed 294;;;###autoload
e417c66f 295(defun delete-whitespace-rectangle (start end &optional fill)
ecb079ed
RS
296 "Delete all whitespace following a specified column in each line.
297The left edge of the rectangle specifies the position in each line
298at which whitespace deletion should begin. On each line in the
e417c66f 299rectangle, all continuous whitespace starting at that column is deleted.
ecb079ed 300
e037c34c 301When called from a program the rectangle's corners are START and END.
e417c66f 302With a prefix (or a FILL) argument, also fill too short lines."
e037c34c 303 (interactive "*r\nP")
e417c66f
RS
304 (apply-on-rectangle 'delete-whitespace-rectangle-line start end fill))
305
b9e81d0a 306(defvar string-rectangle-history nil)
197615f3 307(defun string-rectangle-line (startcol endcol string delete)
b9e81d0a 308 (move-to-column startcol t)
197615f3
DL
309 (if delete
310 (delete-rectangle-line startcol endcol nil))
e417c66f 311 (insert string))
131ca136 312
852eeeaf 313;;;###autoload
35f901fa
GM
314(defun string-rectangle (start end string)
315 "Replace rectangle contents with STRING on each line.
316The length of STRING need not be the same as the rectangle width.
317
318Called from a program, takes three args; START, END and STRING."
b9e81d0a
SM
319 (interactive
320 (progn (barf-if-buffer-read-only)
321 (list
322 (region-beginning)
323 (region-end)
5b76833f 324 (read-string (format "String rectangle (default %s): "
b9e81d0a
SM
325 (or (car string-rectangle-history) ""))
326 nil 'string-rectangle-history
327 (car string-rectangle-history)))))
7509a874
LMI
328 (goto-char
329 (apply-on-rectangle 'string-rectangle-line start end string t)))
852eeeaf 330
0c54cd99 331;;;###autoload
35f901fa
GM
332(defalias 'replace-rectangle 'string-rectangle)
333
334;;;###autoload
335(defun string-insert-rectangle (start end string)
336 "Insert STRING on each line of region-rectangle, shifting text right.
337
338When called from a program, the rectangle's corners are START and END.
339The left edge of the rectangle specifies the column for insertion.
340This command does not delete or overwrite any existing text."
b9e81d0a
SM
341 (interactive
342 (progn (barf-if-buffer-read-only)
343 (list
344 (region-beginning)
345 (region-end)
5b76833f 346 (read-string (format "String insert rectangle (default %s): "
b9e81d0a
SM
347 (or (car string-rectangle-history) ""))
348 nil 'string-rectangle-history
349 (car string-rectangle-history)))))
35f901fa
GM
350 (apply-on-rectangle 'string-rectangle-line start end string nil))
351
f9f9507e 352;;;###autoload
e417c66f 353(defun clear-rectangle (start end &optional fill)
e037c34c
DL
354 "Blank out the region-rectangle.
355The text previously in the region is overwritten with blanks.
e417c66f 356
e037c34c 357When called from a program the rectangle's corners are START and END.
e417c66f
RS
358With a prefix (or a FILL) argument, also fill with blanks the parts of the
359rectangle which were empty."
e037c34c 360 (interactive "*r\nP")
e417c66f
RS
361 (apply-on-rectangle 'clear-rectangle-line start end fill))
362
363(defun clear-rectangle-line (startcol endcol fill)
7dfee029 364 (let ((pt (point-at-eol)))
b29b5c24 365 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
e417c66f
RS
366 (if (and (not fill)
367 (<= (save-excursion (goto-char pt) (current-column)) endcol))
368 (delete-region (point) pt)
369 ;; else
370 (setq pt (point))
b9e81d0a 371 (move-to-column endcol t)
7dfee029 372 (setq endcol (current-column))
e417c66f 373 (delete-region pt (point))
7dfee029 374 (indent-to endcol)))))
a2535589 375
99f053cf
JA
376;; Line numbers for `rectangle-number-line-callback'.
377(defvar rectangle-number-line-counter)
378
06b60517 379(defun rectangle-number-line-callback (start _end format-string)
99f053cf
JA
380 (move-to-column start t)
381 (insert (format format-string rectangle-number-line-counter))
382 (setq rectangle-number-line-counter
383 (1+ rectangle-number-line-counter)))
384
385(defun rectange--default-line-number-format (start end start-at)
386 (concat "%"
387 (int-to-string (length (int-to-string (+ (count-lines start end)
388 start-at))))
389 "d "))
390
391;;;###autoload
392(defun rectangle-number-lines (start end start-at &optional format)
393 "Insert numbers in front of the region-rectangle.
394
395START-AT, if non-nil, should be a number from which to begin
396counting. FORMAT, if non-nil, should be a format string to pass
397to `format' along with the line count. When called interactively
398with a prefix argument, prompt for START-AT and FORMAT."
399 (interactive
400 (if current-prefix-arg
401 (let* ((start (region-beginning))
402 (end (region-end))
403 (start-at (read-number "Number to count from: " 1)))
404 (list start end start-at
405 (read-string "Format string: "
406 (rectange--default-line-number-format
407 start end start-at))))
408 (list (region-beginning) (region-end) 1 nil)))
409 (unless format
410 (setq format (rectange--default-line-number-format start end start-at)))
411 (let ((rectangle-number-line-counter start-at))
412 (apply-on-rectangle 'rectangle-number-line-callback
413 start end format)))
414
08ce70d1 415(provide 'rect)
6594deb0
ER
416
417;;; rect.el ends here