Mercurial > emacs
annotate lisp/textmodes/picture.el @ 6991:72393aa69dd2
(sort-subr): Use car-less-than-car when appropriate.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 20 Apr 1994 19:56:46 +0000 |
parents | 121ee28dbda0 |
children | cc7cd83ccf3f |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; picture.el --- "Picture mode" -- editing using quarter-plane screen model. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Author: K. Shane Hartman |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
6 ;; Maintainer: FSF |
238 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
238 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
24 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
25 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
26 ;; This code provides the picture-mode commands documented in the Emacs |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
27 ;; manual. The screen is treated as a semi-infinite quarter-plane with |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
28 ;; support for rectangle operations and `etch-a-sketch' character |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
29 ;; insertion in any of eight directions. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1396
diff
changeset
|
30 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
31 ;;; Code: |
238 | 32 |
33 (defun move-to-column-force (column) | |
34 "Move to column COLUMN in current line. | |
35 Differs from `move-to-column' in that it creates or modifies whitespace | |
36 if necessary to attain exactly the specified column." | |
3643
f336e1e9a664
* picture.el (move-to-column-force): If column is negative, go
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
37 (or (natnump column) (setq column 0)) |
238 | 38 (move-to-column column) |
39 (let ((col (current-column))) | |
40 (if (< col column) | |
41 (indent-to column) | |
42 (if (and (/= col column) | |
43 (= (preceding-char) ?\t)) | |
44 (let (indent-tabs-mode) | |
45 (delete-char -1) | |
46 (indent-to col) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
47 (move-to-column column)))) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2595
diff
changeset
|
48 ;; This call will go away when Emacs gets real horizontal autoscrolling |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
49 (hscroll-point-visible))) |
238 | 50 |
51 | |
52 ;; Picture Movement Commands | |
53 | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
54 (defun picture-beginning-of-line (&optional arg) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
55 "Position point at the beginning of the line. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
56 With ARG not nil, move forward ARG - 1 lines first. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
57 If scan reaches end of buffer, stop there without error." |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
58 (interactive "P") |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
59 (if arg (forward-line (1- (prefix-numeric-value arg)))) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
60 (beginning-of-line) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2595
diff
changeset
|
61 ;; This call will go away when Emacs gets real horizontal autoscrolling |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
62 (hscroll-point-visible)) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
63 |
238 | 64 (defun picture-end-of-line (&optional arg) |
65 "Position point after last non-blank character on current line. | |
66 With ARG not nil, move forward ARG - 1 lines first. | |
67 If scan reaches end of buffer, stop there without error." | |
68 (interactive "P") | |
69 (if arg (forward-line (1- (prefix-numeric-value arg)))) | |
70 (beginning-of-line) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
71 (skip-chars-backward " \t" (prog1 (point) (end-of-line))) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2595
diff
changeset
|
72 ;; This call will go away when Emacs gets real horizontal autoscrolling |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
73 (hscroll-point-visible)) |
238 | 74 |
75 (defun picture-forward-column (arg) | |
76 "Move cursor right, making whitespace if necessary. | |
77 With argument, move that many columns." | |
78 (interactive "p") | |
6120
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
79 (let ((target-column (+ (current-column) arg))) |
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
80 (move-to-column-force target-column) |
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
81 ;; Picture mode isn't really suited to multi-column characters, |
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
82 ;; but we might as well let the user move across them. |
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
83 (and (< arg 0) |
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
84 (> (current-column) target-column) |
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
85 (forward-char -1)))) |
238 | 86 |
87 (defun picture-backward-column (arg) | |
88 "Move cursor left, making whitespace if necessary. | |
89 With argument, move that many columns." | |
90 (interactive "p") | |
6120
121ee28dbda0
(picture-forward-column, picture-backward-column): Allow backward motion
Karl Heuer <kwzh@gnu.org>
parents:
6017
diff
changeset
|
91 (picture-forward-column (- arg))) |
238 | 92 |
93 (defun picture-move-down (arg) | |
94 "Move vertically down, making whitespace if necessary. | |
95 With argument, move that many lines." | |
96 (interactive "p") | |
97 (let ((col (current-column))) | |
98 (picture-newline arg) | |
99 (move-to-column-force col))) | |
100 | |
101 (defconst picture-vertical-step 0 | |
102 "Amount to move vertically after text character in Picture mode.") | |
103 | |
104 (defconst picture-horizontal-step 1 | |
105 "Amount to move horizontally after text character in Picture mode.") | |
106 | |
107 (defun picture-move-up (arg) | |
108 "Move vertically up, making whitespace if necessary. | |
109 With argument, move that many lines." | |
110 (interactive "p") | |
111 (picture-move-down (- arg))) | |
112 | |
113 (defun picture-movement-right () | |
114 "Move right after self-inserting character in Picture mode." | |
115 (interactive) | |
116 (picture-set-motion 0 1)) | |
117 | |
118 (defun picture-movement-left () | |
119 "Move left after self-inserting character in Picture mode." | |
120 (interactive) | |
121 (picture-set-motion 0 -1)) | |
122 | |
123 (defun picture-movement-up () | |
124 "Move up after self-inserting character in Picture mode." | |
125 (interactive) | |
126 (picture-set-motion -1 0)) | |
127 | |
128 (defun picture-movement-down () | |
129 "Move down after self-inserting character in Picture mode." | |
130 (interactive) | |
131 (picture-set-motion 1 0)) | |
132 | |
133 (defun picture-movement-nw () | |
134 "Move up and left after self-inserting character in Picture mode." | |
135 (interactive) | |
136 (picture-set-motion -1 -1)) | |
137 | |
138 (defun picture-movement-ne () | |
139 "Move up and right after self-inserting character in Picture mode." | |
140 (interactive) | |
141 (picture-set-motion -1 1)) | |
142 | |
143 (defun picture-movement-sw () | |
144 "Move down and left after self-inserting character in Picture mode." | |
145 (interactive) | |
146 (picture-set-motion 1 -1)) | |
147 | |
148 (defun picture-movement-se () | |
149 "Move down and right after self-inserting character in Picture mode." | |
150 (interactive) | |
151 (picture-set-motion 1 1)) | |
152 | |
153 (defun picture-set-motion (vert horiz) | |
154 "Set VERTICAL and HORIZONTAL increments for movement in Picture mode. | |
155 The mode line is updated to reflect the current direction." | |
156 (setq picture-vertical-step vert | |
157 picture-horizontal-step horiz) | |
158 (setq mode-name | |
159 (format "Picture:%s" | |
160 (car (nthcdr (+ 1 (% horiz 2) (* 3 (1+ (% vert 2)))) | |
161 '(nw up ne left none right sw down se))))) | |
162 ;; Kludge - force the mode line to be updated. Is there a better | |
163 ;; way to this? | |
164 (set-buffer-modified-p (buffer-modified-p)) | |
165 (message "")) | |
166 | |
167 (defun picture-move () | |
168 "Move in direction of `picture-vertical-step' and `picture-horizontal-step'." | |
169 (picture-move-down picture-vertical-step) | |
170 (picture-forward-column picture-horizontal-step)) | |
171 | |
172 (defun picture-motion (arg) | |
173 "Move point in direction of current picture motion in Picture mode. | |
174 With ARG do it that many times. Useful for delineating rectangles in | |
175 conjunction with diagonal picture motion. | |
176 Do \\[command-apropos] picture-movement to see commands which control motion." | |
177 (interactive "p") | |
178 (picture-move-down (* arg picture-vertical-step)) | |
179 (picture-forward-column (* arg picture-horizontal-step))) | |
180 | |
181 (defun picture-motion-reverse (arg) | |
182 "Move point in direction opposite of current picture motion in Picture mode. | |
183 With ARG do it that many times. Useful for delineating rectangles in | |
184 conjunction with diagonal picture motion. | |
185 Do \\[command-apropos] `picture-movement' to see commands which control motion." | |
186 (interactive "p") | |
187 (picture-motion (- arg))) | |
188 | |
189 | |
190 ;; Picture insertion and deletion. | |
191 | |
192 (defun picture-self-insert (arg) | |
193 "Insert this character in place of character previously at the cursor. | |
194 The cursor then moves in the direction you previously specified | |
195 with the commands `picture-movement-right', `picture-movement-up', etc. | |
196 Do \\[command-apropos] `picture-movement' to see those commands." | |
197 (interactive "p") | |
198 (while (> arg 0) | |
199 (setq arg (1- arg)) | |
200 (move-to-column-force (1+ (current-column))) | |
201 (delete-char -1) | |
202 (insert last-input-char) | |
203 (forward-char -1) | |
204 (picture-move))) | |
205 | |
206 (defun picture-clear-column (arg) | |
207 "Clear out ARG columns after point without moving." | |
208 (interactive "p") | |
209 (let* ((opoint (point)) | |
210 (original-col (current-column)) | |
211 (target-col (+ original-col arg))) | |
212 (move-to-column-force target-col) | |
213 (delete-region opoint (point)) | |
214 (save-excursion | |
215 (indent-to (max target-col original-col))))) | |
216 | |
217 (defun picture-backward-clear-column (arg) | |
218 "Clear out ARG columns before point, moving back over them." | |
219 (interactive "p") | |
220 (picture-clear-column (- arg))) | |
221 | |
222 (defun picture-clear-line (arg) | |
223 "Clear out rest of line; if at end of line, advance to next line. | |
224 Cleared-out line text goes into the kill ring, as do newlines that are | |
225 advanced over. With argument, clear out (and save in kill ring) that | |
226 many lines." | |
227 (interactive "P") | |
228 (if arg | |
229 (progn | |
230 (setq arg (prefix-numeric-value arg)) | |
231 (kill-line arg) | |
232 (newline (if (> arg 0) arg (- arg)))) | |
233 (if (looking-at "[ \t]*$") | |
234 (kill-ring-save (point) (progn (forward-line 1) (point))) | |
235 (kill-region (point) (progn (end-of-line) (point)))))) | |
236 | |
237 (defun picture-newline (arg) | |
238 "Move to the beginning of the following line. | |
239 With argument, moves that many lines (up, if negative argument); | |
240 always moves to the beginning of a line." | |
241 (interactive "p") | |
242 (if (< arg 0) | |
243 (forward-line arg) | |
244 (while (> arg 0) | |
245 (end-of-line) | |
246 (if (eobp) (newline) (forward-char 1)) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
247 (setq arg (1- arg)))) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2595
diff
changeset
|
248 ;; This call will go away when Emacs gets real horizontal autoscrolling |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
249 (hscroll-point-visible)) |
238 | 250 |
251 (defun picture-open-line (arg) | |
252 "Insert an empty line after the current line. | |
253 With positive argument insert that many lines." | |
254 (interactive "p") | |
255 (save-excursion | |
256 (end-of-line) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
257 (open-line arg)) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2595
diff
changeset
|
258 ;; This call will go away when Emacs gets real horizontal autoscrolling |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
259 (hscroll-point-visible)) |
238 | 260 |
261 (defun picture-duplicate-line () | |
262 "Insert a duplicate of the current line, below it." | |
263 (interactive) | |
264 (save-excursion | |
265 (let ((contents | |
266 (buffer-substring | |
267 (progn (beginning-of-line) (point)) | |
268 (progn (picture-newline 1) (point))))) | |
269 (forward-line -1) | |
270 (insert contents)))) | |
271 | |
3730
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
272 ;; Like replace-match, but overwrites. |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
273 (defun picture-replace-match (newtext fixedcase literal) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
274 (let (ocolumn change pos) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
275 (goto-char (setq pos (match-end 0))) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
276 (setq ocolumn (current-column)) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
277 ;; Make the replacement and undo it, to see how it changes the length. |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
278 (let ((buffer-undo-list nil) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
279 list1) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
280 (replace-match newtext fixedcase literal) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
281 (setq change (- (current-column) ocolumn)) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
282 (setq list1 buffer-undo-list) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
283 (while list1 |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
284 (setq list1 (primitive-undo 1 list1)))) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
285 (goto-char pos) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
286 (if (> change 0) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
287 (delete-region (point) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
288 (progn |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
289 (move-to-column-force (+ change (current-column))) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
290 (point)))) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
291 (replace-match newtext fixedcase literal) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
292 (if (< change 0) |
473c03886fc2
(picture-replace-match): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3643
diff
changeset
|
293 (insert-char ?\ (- change))))) |
238 | 294 |
295 ;; Picture Tabs | |
296 | |
297 (defvar picture-tab-chars "!-~" | |
298 "*A character set which controls behavior of commands | |
299 \\[picture-set-tab-stops] and \\[picture-tab-search]. It is NOT a | |
300 regular expression, any regexp special characters will be quoted. | |
301 It defines a set of \"interesting characters\" to look for when setting | |
302 \(or searching for) tab stops, initially \"!-~\" (all printing characters). | |
303 For example, suppose that you are editing a table which is formatted thus: | |
304 | foo | bar + baz | 23 * | |
305 | bubbles | and + etc | 97 * | |
306 and that `picture-tab-chars' is \"|+*\". Then invoking | |
307 \\[picture-set-tab-stops] on either of the previous lines would result | |
308 in the following tab stops | |
309 : : : : | |
310 Another example - \"A-Za-z0-9\" would produce the tab stops | |
311 : : : : | |
312 | |
313 Note that if you want the character `-' to be in the set, it must be | |
314 included in a range or else appear in a context where it cannot be | |
315 taken for indicating a range (e.g. \"-A-Z\" declares the set to be the | |
316 letters `A' through `Z' and the character `-'). If you want the | |
317 character `\\' in the set it must be preceded by itself: \"\\\\\". | |
318 | |
319 The command \\[picture-tab-search] is defined to move beneath (or to) a | |
320 character belonging to this set independent of the tab stops list.") | |
321 | |
322 (defun picture-set-tab-stops (&optional arg) | |
323 "Set value of `tab-stop-list' according to context of this line. | |
324 This controls the behavior of \\[picture-tab]. A tab stop is set at | |
325 every column occupied by an \"interesting character\" that is preceded | |
326 by whitespace. Interesting characters are defined by the variable | |
327 `picture-tab-chars', see its documentation for an example of usage. | |
328 With ARG, just (re)set `tab-stop-list' to its default value. The tab | |
329 stops computed are displayed in the minibuffer with `:' at each stop." | |
330 (interactive "P") | |
331 (save-excursion | |
332 (let (tabs) | |
333 (if arg | |
334 (setq tabs (default-value 'tab-stop-list)) | |
335 (let ((regexp (concat "[ \t]+[" (regexp-quote picture-tab-chars) "]"))) | |
336 (beginning-of-line) | |
337 (let ((bol (point))) | |
338 (end-of-line) | |
339 (while (re-search-backward regexp bol t) | |
340 (skip-chars-forward " \t") | |
341 (setq tabs (cons (current-column) tabs))) | |
342 (if (null tabs) | |
343 (error "No characters in set %s on this line." | |
344 (regexp-quote picture-tab-chars)))))) | |
345 (setq tab-stop-list tabs) | |
346 (let ((blurb (make-string (1+ (nth (1- (length tabs)) tabs)) ?\ ))) | |
347 (while tabs | |
348 (aset blurb (car tabs) ?:) | |
349 (setq tabs (cdr tabs))) | |
350 (message blurb))))) | |
351 | |
352 (defun picture-tab-search (&optional arg) | |
353 "Move to column beneath next interesting char in previous line. | |
354 With ARG move to column occupied by next interesting character in this | |
355 line. The character must be preceded by whitespace. | |
356 \"interesting characters\" are defined by variable `picture-tab-chars'. | |
357 If no such character is found, move to beginning of line." | |
358 (interactive "P") | |
359 (let ((target (current-column))) | |
360 (save-excursion | |
361 (if (and (not arg) | |
362 (progn | |
363 (beginning-of-line) | |
364 (skip-chars-backward | |
365 (concat "^" (regexp-quote picture-tab-chars)) | |
366 (point-min)) | |
367 (not (bobp)))) | |
368 (move-to-column target)) | |
369 (if (re-search-forward | |
370 (concat "[ \t]+[" (regexp-quote picture-tab-chars) "]") | |
371 (save-excursion (end-of-line) (point)) | |
372 'move) | |
373 (setq target (1- (current-column))) | |
374 (setq target nil))) | |
375 (if target | |
376 (move-to-column-force target) | |
377 (beginning-of-line)))) | |
378 | |
379 (defun picture-tab (&optional arg) | |
380 "Tab transparently (just move point) to next tab stop. | |
381 With prefix arg, overwrite the traversed text with spaces. The tab stop | |
382 list can be changed by \\[picture-set-tab-stops] and \\[edit-tab-stops]. | |
383 See also documentation for variable `picture-tab-chars'." | |
384 (interactive "P") | |
385 (let* ((opoint (point))) | |
386 (move-to-tab-stop) | |
387 (if arg | |
388 (let (indent-tabs-mode | |
389 (column (current-column))) | |
390 (delete-region opoint (point)) | |
391 (indent-to column))))) | |
392 | |
393 ;; Picture Rectangles | |
394 | |
395 (defconst picture-killed-rectangle nil | |
396 "Rectangle killed or copied by \\[picture-clear-rectangle] in Picture mode. | |
397 The contents can be retrieved by \\[picture-yank-rectangle]") | |
398 | |
399 (defun picture-clear-rectangle (start end &optional killp) | |
400 "Clear and save rectangle delineated by point and mark. | |
401 The rectangle is saved for yanking by \\[picture-yank-rectangle] and replaced | |
402 with whitespace. The previously saved rectangle, if any, is lost. With | |
403 prefix argument, the rectangle is actually killed, shifting remaining text." | |
404 (interactive "r\nP") | |
405 (setq picture-killed-rectangle (picture-snarf-rectangle start end killp))) | |
406 | |
407 (defun picture-clear-rectangle-to-register (start end register &optional killp) | |
408 "Clear rectangle delineated by point and mark into REGISTER. | |
409 The rectangle is saved in REGISTER and replaced with whitespace. With | |
410 prefix argument, the rectangle is actually killed, shifting remaining text." | |
411 (interactive "r\ncRectangle to register: \nP") | |
412 (set-register register (picture-snarf-rectangle start end killp))) | |
413 | |
414 (defun picture-snarf-rectangle (start end &optional killp) | |
415 (let ((column (current-column)) | |
416 (indent-tabs-mode nil)) | |
417 (prog1 (save-excursion | |
418 (if killp | |
419 (delete-extract-rectangle start end) | |
420 (prog1 (extract-rectangle start end) | |
421 (clear-rectangle start end)))) | |
422 (move-to-column-force column)))) | |
423 | |
424 (defun picture-yank-rectangle (&optional insertp) | |
425 "Overlay rectangle saved by \\[picture-clear-rectangle] | |
426 The rectangle is positioned with upper left corner at point, overwriting | |
427 existing text. With prefix argument, the rectangle is inserted instead, | |
428 shifting existing text. Leaves mark at one corner of rectangle and | |
429 point at the other (diagonally opposed) corner." | |
430 (interactive "P") | |
431 (if (not (consp picture-killed-rectangle)) | |
432 (error "No rectangle saved.") | |
433 (picture-insert-rectangle picture-killed-rectangle insertp))) | |
434 | |
435 (defun picture-yank-rectangle-from-register (register &optional insertp) | |
436 "Overlay rectangle saved in REGISTER. | |
437 The rectangle is positioned with upper left corner at point, overwriting | |
438 existing text. With prefix argument, the rectangle is | |
439 inserted instead, shifting existing text. Leaves mark at one corner | |
440 of rectangle and point at the other (diagonally opposed) corner." | |
441 (interactive "cRectangle from register: \nP") | |
442 (let ((rectangle (get-register register))) | |
443 (if (not (consp rectangle)) | |
444 (error "Register %c does not contain a rectangle." register) | |
445 (picture-insert-rectangle rectangle insertp)))) | |
446 | |
447 (defun picture-insert-rectangle (rectangle &optional insertp) | |
448 "Overlay RECTANGLE with upper left corner at point. | |
449 Optional argument INSERTP, if non-nil causes RECTANGLE to be inserted. | |
450 Leaves the region surrounding the rectangle." | |
451 (let ((indent-tabs-mode nil)) | |
452 (if (not insertp) | |
453 (save-excursion | |
454 (delete-rectangle (point) | |
455 (progn | |
456 (picture-forward-column (length (car rectangle))) | |
457 (picture-move-down (1- (length rectangle))) | |
458 (point))))) | |
459 (push-mark) | |
460 (insert-rectangle rectangle))) | |
461 | |
462 | |
463 ;; Picture Keymap, entry and exit points. | |
464 | |
465 (defconst picture-mode-map nil) | |
466 | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
467 (defun picture-substitute (oldfun newfun) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
468 (substitute-key-definition oldfun newfun picture-mode-map global-map)) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
469 |
238 | 470 (if (not picture-mode-map) |
471 (let ((i ?\ )) | |
472 (setq picture-mode-map (make-keymap)) | |
473 (while (< i ?\177) | |
875 | 474 (define-key picture-mode-map (make-string 1 i) 'picture-self-insert) |
238 | 475 (setq i (1+ i))) |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
476 |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
477 (picture-substitute 'forward-char 'picture-forward-column) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
478 (picture-substitute 'backward-char 'picture-backward-column) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
479 (picture-substitute 'delete-char 'picture-clear-column) |
6017
cf744280a5a4
(picture-mode-map): Replace delete-backward-char
Richard M. Stallman <rms@gnu.org>
parents:
5316
diff
changeset
|
480 ;; There are two possibilities for what is normally on DEL. |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
481 (picture-substitute 'backward-delete-char-untabify 'picture-backward-clear-column) |
6017
cf744280a5a4
(picture-mode-map): Replace delete-backward-char
Richard M. Stallman <rms@gnu.org>
parents:
5316
diff
changeset
|
482 (picture-substitute 'delete-backward-char 'picture-backward-clear-column) |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
483 (picture-substitute 'kill-line 'picture-clear-line) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
484 (picture-substitute 'open-line 'picture-open-line) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
485 (picture-substitute 'newline 'picture-newline) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
486 (picture-substitute 'newline-andindent 'picture-duplicate-line) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
487 (picture-substitute 'next-line 'picture-move-down) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
488 (picture-substitute 'previous-line 'picture-move-up) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
489 (picture-substitute 'beginning-of-line 'picture-beginning-of-line) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
490 (picture-substitute 'end-of-line 'picture-end-of-line) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
491 |
238 | 492 (define-key picture-mode-map "\C-c\C-d" 'delete-char) |
493 (define-key picture-mode-map "\e\t" 'picture-toggle-tab-state) | |
494 (define-key picture-mode-map "\t" 'picture-tab) | |
495 (define-key picture-mode-map "\e\t" 'picture-tab-search) | |
496 (define-key picture-mode-map "\C-c\t" 'picture-set-tab-stops) | |
497 (define-key picture-mode-map "\C-c\C-k" 'picture-clear-rectangle) | |
498 (define-key picture-mode-map "\C-c\C-w" 'picture-clear-rectangle-to-register) | |
499 (define-key picture-mode-map "\C-c\C-y" 'picture-yank-rectangle) | |
500 (define-key picture-mode-map "\C-c\C-x" 'picture-yank-rectangle-from-register) | |
501 (define-key picture-mode-map "\C-c\C-c" 'picture-mode-exit) | |
502 (define-key picture-mode-map "\C-c\C-f" 'picture-motion) | |
503 (define-key picture-mode-map "\C-c\C-b" 'picture-motion-reverse) | |
504 (define-key picture-mode-map "\C-c<" 'picture-movement-left) | |
505 (define-key picture-mode-map "\C-c>" 'picture-movement-right) | |
506 (define-key picture-mode-map "\C-c^" 'picture-movement-up) | |
507 (define-key picture-mode-map "\C-c." 'picture-movement-down) | |
508 (define-key picture-mode-map "\C-c`" 'picture-movement-nw) | |
509 (define-key picture-mode-map "\C-c'" 'picture-movement-ne) | |
510 (define-key picture-mode-map "\C-c/" 'picture-movement-sw) | |
511 (define-key picture-mode-map "\C-c\\" 'picture-movement-se))) | |
512 | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
513 (defvar picture-mode-hook nil |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
514 "If non-nil, its value is called on entry to Picture mode. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
515 Picture mode is invoked by the command \\[picture-mode].") |
238 | 516 |
875 | 517 (defvar picture-mode-old-local-map) |
518 (defvar picture-mode-old-mode-name) | |
519 (defvar picture-mode-old-major-mode) | |
5316
9bf2ae74a7bd
(picture-mode): Save the old truncate-lines value.
Richard M. Stallman <rms@gnu.org>
parents:
3730
diff
changeset
|
520 (defvar picture-mode-old-truncate-lines) |
875 | 521 |
256 | 522 ;;;###autoload |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
523 (defun picture-mode () |
238 | 524 "Switch to Picture mode, in which a quarter-plane screen model is used. |
525 Printing characters replace instead of inserting themselves with motion | |
526 afterwards settable by these commands: | |
527 C-c < Move left after insertion. | |
528 C-c > Move right after insertion. | |
529 C-c ^ Move up after insertion. | |
530 C-c . Move down after insertion. | |
531 C-c ` Move northwest (nw) after insertion. | |
532 C-c ' Move northeast (ne) after insertion. | |
533 C-c / Move southwest (sw) after insertion. | |
534 C-c \\ Move southeast (se) after insertion. | |
535 The current direction is displayed in the mode line. The initial | |
536 direction is right. Whitespace is inserted and tabs are changed to | |
537 spaces when required by movement. You can move around in the buffer | |
538 with these commands: | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
539 \\[picture-move-down] Move vertically to SAME column in previous line. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
540 \\[picture-move-up] Move vertically to SAME column in next line. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
541 \\[picture-end-of-line] Move to column following last non-whitespace character. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
542 \\[picture-forward-column] Move right inserting spaces if required. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
543 \\[picture-backward-column] Move left changing tabs to spaces if required. |
238 | 544 C-c C-f Move in direction of current picture motion. |
545 C-c C-b Move in opposite direction of current picture motion. | |
546 Return Move to beginning of next line. | |
547 You can edit tabular text with these commands: | |
548 M-Tab Move to column beneath (or at) next interesting character. | |
549 `Indents' relative to a previous line. | |
550 Tab Move to next stop in tab stop list. | |
551 C-c Tab Set tab stops according to context of this line. | |
552 With ARG resets tab stops to default (global) value. | |
553 See also documentation of variable picture-tab-chars | |
554 which defines \"interesting character\". You can manually | |
555 change the tab stop list with command \\[edit-tab-stops]. | |
556 You can manipulate text with these commands: | |
557 C-d Clear (replace) ARG columns after point without moving. | |
558 C-c C-d Delete char at point - the command normally assigned to C-d. | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
559 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them. |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
560 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared |
238 | 561 text is saved in the kill ring. |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
562 \\[picture-open-line] Open blank line(s) beneath current line. |
238 | 563 You can manipulate rectangles with these commands: |
564 C-c C-k Clear (or kill) a rectangle and save it. | |
565 C-c C-w Like C-c C-k except rectangle is saved in named register. | |
566 C-c C-y Overlay (or insert) currently saved rectangle at point. | |
567 C-c C-x Like C-c C-y except rectangle is taken from named register. | |
568 \\[copy-rectangle-to-register] Copies a rectangle to a register. | |
569 \\[advertised-undo] Can undo effects of rectangle overlay commands | |
570 commands if invoked soon enough. | |
571 You can return to the previous mode with: | |
572 C-c C-c Which also strips trailing whitespace from every line. | |
573 Stripping is suppressed by supplying an argument. | |
574 | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
575 Entry to this mode calls the value of picture-mode-hook if non-nil. |
238 | 576 |
577 Note that Picture mode commands will work outside of Picture mode, but | |
578 they are not defaultly assigned to keys." | |
579 (interactive) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
580 (if (eq major-mode 'picture-mode) |
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
581 (error "You are already editing a picture.") |
238 | 582 (make-local-variable 'picture-mode-old-local-map) |
583 (setq picture-mode-old-local-map (current-local-map)) | |
584 (use-local-map picture-mode-map) | |
585 (make-local-variable 'picture-mode-old-mode-name) | |
586 (setq picture-mode-old-mode-name mode-name) | |
587 (make-local-variable 'picture-mode-old-major-mode) | |
588 (setq picture-mode-old-major-mode major-mode) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
589 (setq major-mode 'picture-mode) |
238 | 590 (make-local-variable 'picture-killed-rectangle) |
591 (setq picture-killed-rectangle nil) | |
592 (make-local-variable 'tab-stop-list) | |
593 (setq tab-stop-list (default-value 'tab-stop-list)) | |
594 (make-local-variable 'picture-tab-chars) | |
595 (setq picture-tab-chars (default-value 'picture-tab-chars)) | |
596 (make-local-variable 'picture-vertical-step) | |
597 (make-local-variable 'picture-horizontal-step) | |
5316
9bf2ae74a7bd
(picture-mode): Save the old truncate-lines value.
Richard M. Stallman <rms@gnu.org>
parents:
3730
diff
changeset
|
598 (make-local-variable 'picture-mode-old-truncate-lines) |
9bf2ae74a7bd
(picture-mode): Save the old truncate-lines value.
Richard M. Stallman <rms@gnu.org>
parents:
3730
diff
changeset
|
599 (setq picture-mode-old-truncate-lines truncate-lines) |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
600 (setq truncate-lines t) |
238 | 601 (picture-set-motion 0 1) |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
602 |
1396
17365cdb1c10
(edit-picture): Run picture-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
875
diff
changeset
|
603 ;; edit-picture-hook is what we used to run, picture-mode-hook is in doc. |
17365cdb1c10
(edit-picture): Run picture-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
875
diff
changeset
|
604 (run-hooks 'edit-picture-hook 'picture-mode-hook) |
238 | 605 (message |
606 (substitute-command-keys | |
607 "Type \\[picture-mode-exit] in this buffer to return it to %s mode.") | |
608 picture-mode-old-mode-name))) | |
609 | |
269 | 610 ;;;###autoload |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
611 (defalias 'edit-picture 'picture-mode) |
238 | 612 |
613 (defun picture-mode-exit (&optional nostrip) | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
614 "Undo picture-mode and return to previous major mode. |
238 | 615 With no argument strips whitespace from end of every line in Picture buffer |
616 otherwise just return to previous mode." | |
617 (interactive "P") | |
2595
6a1ad0661928
Completed the package entry point's name change from edit-picture to
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
618 (if (not (eq major-mode 'picture-mode)) |
238 | 619 (error "You aren't editing a Picture.") |
620 (if (not nostrip) (picture-clean)) | |
621 (setq mode-name picture-mode-old-mode-name) | |
622 (use-local-map picture-mode-old-local-map) | |
623 (setq major-mode picture-mode-old-major-mode) | |
624 (kill-local-variable 'tab-stop-list) | |
5316
9bf2ae74a7bd
(picture-mode): Save the old truncate-lines value.
Richard M. Stallman <rms@gnu.org>
parents:
3730
diff
changeset
|
625 (setq truncate-lines picture-mode-old-truncate-lines) |
238 | 626 ;; Kludge - force the mode line to be updated. Is there a better |
627 ;; way to do this? | |
628 (set-buffer-modified-p (buffer-modified-p)))) | |
629 | |
630 (defun picture-clean () | |
631 "Eliminate whitespace at ends of lines." | |
632 (save-excursion | |
633 (goto-char (point-min)) | |
634 (while (re-search-forward "[ \t][ \t]*$" nil t) | |
635 (delete-region (match-beginning 0) (point))))) | |
584 | 636 |
637 (provide 'picture) | |
638 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
639 ;;; picture.el ends here |