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