1 ;;; rect.el --- rectangle functions for GNU Emacs
3 ;; Copyright (C) 1985, 1999, 2000, 2001, 2002, 2003, 2004
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Maintainer: Didier Verna <didier@xemacs.org>
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, or (at your option)
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; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; This package provides the operations on rectangles that are documented
29 ;; in the Emacs manual.
31 ;; ### NOTE: this file has been almost completely rewritten by Didier Verna
32 ;; <didier@xemacs.org> in July 1999. The purpose of this rewrite is to be less
33 ;; intrusive and fill lines with whitespaces only when needed. A few functions
34 ;; are untouched though, as noted above their definition.
40 (defun move-to-column-force (column &optional flag
)
41 "If COLUMN is within a multi-column character, replace it by spaces and tab.
42 As for `move-to-column', passing anything but nil or t in FLAG will move to
43 the desired column only if the line is long enough."
44 (move-to-column column
(or flag t
)))
47 (make-obsolete 'move-to-column-force
'move-to-column
"21.2")
49 ;; not used any more --dv
50 ;; extract-rectangle-line stores lines into this list
51 ;; to accumulate them for extract-rectangle and delete-extract-rectangle.
52 (defvar operate-on-rectangle-lines
)
54 ;; ### NOTE: this function is untouched, but not used anymore apart from
55 ;; `delete-whitespace-rectangle'. `apply-on-rectangle' is used instead. --dv
56 (defun operate-on-rectangle (function start end coerce-tabs
)
57 "Call FUNCTION for each line of rectangle with corners at START, END.
58 If COERCE-TABS is non-nil, convert multi-column characters
59 that span the starting or ending columns on any line
60 to multiple spaces before calling FUNCTION.
61 FUNCTION is called with three arguments:
62 position of start of segment of this line within the rectangle,
63 number of columns that belong to rectangle but are before that position,
64 number of columns that belong to rectangle but are after point.
65 Point is at the end of the segment of this line within the rectangle."
66 (let (startcol startlinepos endcol endlinepos
)
69 (setq startcol
(current-column))
71 (setq startlinepos
(point)))
74 (setq endcol
(current-column))
76 (setq endlinepos
(point-marker)))
77 (if (< endcol startcol
)
78 (setq startcol
(prog1 endcol
(setq endcol startcol
))))
80 (goto-char startlinepos
)
81 (while (< (point) endlinepos
)
82 (let (startpos begextra endextra
)
84 (move-to-column startcol t
)
85 (move-to-column startcol
))
86 (setq begextra
(- (current-column) startcol
))
87 (setq startpos
(point))
89 (move-to-column endcol t
)
90 (move-to-column endcol
))
91 ;; If we overshot, move back one character
92 ;; so that endextra will be positive.
93 (if (and (not coerce-tabs
) (> (current-column) endcol
))
95 (setq endextra
(- endcol
(current-column)))
97 (setq endextra
(+ endextra begextra
)
99 (funcall function startpos begextra endextra
))
101 (- endcol startcol
)))
103 ;; The replacement for `operate-on-rectangle' -- dv
104 (defun apply-on-rectangle (function start end
&rest args
)
105 "Call FUNCTION for each line of rectangle with corners at START, END.
106 FUNCTION is called with two arguments: the start and end columns of the
107 rectangle, plus ARGS extra arguments. Point is at the beginning of line when
108 the function is called."
109 (let (startcol startpt endcol endpt
)
112 (setq startcol
(current-column))
114 (setq startpt
(point))
116 (setq endcol
(current-column))
118 (setq endpt
(point-marker))
119 ;; ensure the start column is the left one.
120 (if (< endcol startcol
)
121 (let ((col startcol
))
122 (setq startcol endcol endcol col
)))
123 ;; start looping over lines
125 (while (< (point) endpt
)
126 (apply function startcol endcol args
)
130 (defun delete-rectangle-line (startcol endcol fill
)
131 (when (= (move-to-column startcol
(if fill t
'coerce
)) startcol
)
132 (delete-region (point)
133 (progn (move-to-column endcol
'coerce
)
136 (defun delete-extract-rectangle-line (startcol endcol lines fill
)
137 (let ((pt (point-at-eol)))
138 (if (< (move-to-column startcol
(if fill t
'coerce
)) startcol
)
139 (setcdr lines
(cons (spaces-string (- endcol startcol
))
143 (move-to-column endcol t
)
144 (setcdr lines
(cons (filter-buffer-substring pt
(point) t
) (cdr lines
))))
147 ;; ### NOTE: this is actually the only function that needs to do complicated
148 ;; stuff like what's happening in `operate-on-rectangle', because the buffer
149 ;; might be read-only. --dv
150 (defun extract-rectangle-line (startcol endcol lines
)
151 (let (start end begextra endextra line
)
152 (move-to-column startcol
)
154 begextra
(- (current-column) startcol
))
155 (move-to-column endcol
)
157 endextra
(- endcol
(current-column)))
158 (setq line
(buffer-substring start
(point)))
160 (setq endextra
(+ endextra begextra
)
165 (while (search-forward "\t" end t
)
166 (let ((width (- (current-column)
167 (save-excursion (forward-char -
1)
169 (setq line
(concat (substring line
0 (- (point) end
1))
170 (spaces-string width
)
171 (substring line
(+ (length line
)
172 (- (point) end
)))))))
173 (if (or (> begextra
0) (> endextra
0))
174 (setq line
(concat (spaces-string begextra
)
176 (spaces-string endextra
))))
177 (setcdr lines
(cons line
(cdr lines
)))))
179 (defconst spaces-strings
180 '["" " " " " " " " " " " " " " " " "])
182 ;; this one is untouched --dv
183 (defun spaces-string (n)
184 "Returns a string with N spaces."
185 (if (<= n
8) (aref spaces-strings n
)
189 (defun delete-rectangle (start end
&optional fill
)
190 "Delete (don't save) text in the region-rectangle.
191 The same range of columns is deleted in each line starting with the
192 line where the region begins and ending with the line where the region
195 When called from a program the rectangle's corners are START and END.
196 With a prefix (or a FILL) argument, also fill lines where nothing has
198 (interactive "*r\nP")
199 (apply-on-rectangle 'delete-rectangle-line start end fill
))
202 (defun delete-extract-rectangle (start end
&optional fill
)
203 "Delete the contents of the rectangle with corners at START and END.
204 Return it as a list of strings, one for each line of the rectangle.
206 When called from a program the rectangle's corners are START and END.
207 With an optional FILL argument, also fill lines where nothing has to be
209 (let ((lines (list nil
)))
210 (apply-on-rectangle 'delete-extract-rectangle-line start end lines fill
)
211 (nreverse (cdr lines
))))
214 (defun extract-rectangle (start end
)
215 "Return the contents of the rectangle with corners at START and END.
216 Return it as a list of strings, one for each line of the rectangle."
217 (let ((lines (list nil
)))
218 (apply-on-rectangle 'extract-rectangle-line start end lines
)
219 (nreverse (cdr lines
))))
221 (defvar killed-rectangle nil
222 "Rectangle for `yank-rectangle' to insert.")
225 (defun kill-rectangle (start end
&optional fill
)
226 "Delete the region-rectangle and save it as the last killed one.
228 When called from a program the rectangle's corners are START and END.
229 You might prefer to use `delete-extract-rectangle' from a program.
231 With a prefix (or a FILL) argument, also fill lines where nothing has to be
234 If the buffer is read-only, Emacs will beep and refrain from deleting
235 the rectangle, but put it in the kill ring anyway. This means that
236 you can use this command to copy text from a read-only buffer.
237 \(If the variable `kill-read-only-ok' is non-nil, then this won't
241 (setq killed-rectangle
(delete-extract-rectangle start end fill
))
242 ((buffer-read-only text-read-only
)
243 (setq killed-rectangle
(extract-rectangle start end
))
244 (if kill-read-only-ok
245 (progn (message "Read only text copied to kill ring") nil
)
246 (barf-if-buffer-read-only)
247 (signal 'text-read-only
(list (current-buffer)))))))
249 ;; this one is untouched --dv
251 (defun yank-rectangle ()
252 "Yank the last killed rectangle with upper left corner at point."
254 (insert-rectangle killed-rectangle
))
256 ;; this one is untoutched --dv
258 (defun insert-rectangle (rectangle)
259 "Insert text of RECTANGLE with upper left corner at point.
260 RECTANGLE's first line is inserted at point, its second
261 line is inserted at a point vertically under point, etc.
262 RECTANGLE should be a list of strings.
263 After this command, the mark is at the upper left corner
264 and point is at the lower right corner."
265 (let ((lines rectangle
)
266 (insertcolumn (current-column))
273 (or (bolp) (insert ?
\n))
274 (move-to-column insertcolumn t
)))
276 (insert-for-yank (car lines
))
277 (setq lines
(cdr lines
)))))
280 (defun open-rectangle (start end
&optional fill
)
281 "Blank out the region-rectangle, shifting text right.
283 The text previously in the region is not overwritten by the blanks,
284 but instead winds up to the right of the rectangle.
286 When called from a program the rectangle's corners are START and END.
287 With a prefix (or a FILL) argument, fill with blanks even if there is no text
288 on the right side of the rectangle."
289 (interactive "*r\nP")
290 (apply-on-rectangle 'open-rectangle-line start end fill
)
293 (defun open-rectangle-line (startcol endcol fill
)
294 (when (= (move-to-column startcol
(if fill t
'coerce
)) startcol
)
295 (unless (and (not fill
)
296 (= (point) (point-at-eol)))
297 (indent-to endcol
))))
299 (defun delete-whitespace-rectangle-line (startcol endcol fill
)
300 (when (= (move-to-column startcol
(if fill t
'coerce
)) startcol
)
301 (unless (= (point) (point-at-eol))
302 (delete-region (point) (progn (skip-syntax-forward " ") (point))))))
305 (defalias 'close-rectangle
'delete-whitespace-rectangle
) ;; Old name
308 (defun delete-whitespace-rectangle (start end
&optional fill
)
309 "Delete all whitespace following a specified column in each line.
310 The left edge of the rectangle specifies the position in each line
311 at which whitespace deletion should begin. On each line in the
312 rectangle, all continuous whitespace starting at that column is deleted.
314 When called from a program the rectangle's corners are START and END.
315 With a prefix (or a FILL) argument, also fill too short lines."
316 (interactive "*r\nP")
317 (apply-on-rectangle 'delete-whitespace-rectangle-line start end fill
))
319 ;; not used any more --dv
320 ;; string-rectangle uses this variable to pass the string
321 ;; to string-rectangle-line.
322 (defvar string-rectangle-string
)
323 (defvar string-rectangle-history nil
)
324 (defun string-rectangle-line (startcol endcol string delete
)
325 (move-to-column startcol t
)
327 (delete-rectangle-line startcol endcol nil
))
331 (defun string-rectangle (start end string
)
332 "Replace rectangle contents with STRING on each line.
333 The length of STRING need not be the same as the rectangle width.
335 Called from a program, takes three args; START, END and STRING."
337 (progn (barf-if-buffer-read-only)
341 (read-string (format "String rectangle (default %s): "
342 (or (car string-rectangle-history
) ""))
343 nil
'string-rectangle-history
344 (car string-rectangle-history
)))))
345 (apply-on-rectangle 'string-rectangle-line start end string t
))
348 (defalias 'replace-rectangle
'string-rectangle
)
351 (defun string-insert-rectangle (start end string
)
352 "Insert STRING on each line of region-rectangle, shifting text right.
354 When called from a program, the rectangle's corners are START and END.
355 The left edge of the rectangle specifies the column for insertion.
356 This command does not delete or overwrite any existing text."
358 (progn (barf-if-buffer-read-only)
362 (read-string (format "String insert rectangle (default %s): "
363 (or (car string-rectangle-history
) ""))
364 nil
'string-rectangle-history
365 (car string-rectangle-history
)))))
366 (apply-on-rectangle 'string-rectangle-line start end string nil
))
369 (defun clear-rectangle (start end
&optional fill
)
370 "Blank out the region-rectangle.
371 The text previously in the region is overwritten with blanks.
373 When called from a program the rectangle's corners are START and END.
374 With a prefix (or a FILL) argument, also fill with blanks the parts of the
375 rectangle which were empty."
376 (interactive "*r\nP")
377 (apply-on-rectangle 'clear-rectangle-line start end fill
))
379 (defun clear-rectangle-line (startcol endcol fill
)
380 (let ((pt (point-at-eol)))
381 (when (= (move-to-column startcol
(if fill t
'coerce
)) startcol
)
383 (<= (save-excursion (goto-char pt
) (current-column)) endcol
))
384 (delete-region (point) pt
)
387 (move-to-column endcol t
)
388 (setq endcol
(current-column))
389 (delete-region pt
(point))
390 (indent-to endcol
)))))
394 ;; arch-tag: 178847b3-1f50-4b03-83de-a6e911cc1d16
395 ;;; rect.el ends here