Allow 'browse-url-emacs' to fetch URL in the selected window
[emacs.git] / lisp / textmodes / picture.el
blob6836fd09a075f847db81b7599fab123889e8609d
1 ;;; picture.el --- "Picture mode" -- editing using quarter-plane screen model
3 ;; Copyright (C) 1985, 1994, 2001-2018 Free Software Foundation, Inc.
5 ;; Author: K. Shane Hartman
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: convenience wp
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This code provides the picture-mode commands documented in the Emacs
27 ;; manual. The screen is treated as a semi-infinite quarter-plane with
28 ;; support for rectangle operations and `etch-a-sketch' character
29 ;; insertion in any of eight directions.
31 ;;; Code:
33 (defgroup picture nil
34 "Editing text-based pictures (\"ASCII art\")."
35 :prefix "picture-"
36 :group 'text)
38 (defcustom picture-rectangle-ctl ?+
39 "Character `picture-draw-rectangle' uses for top left corners."
40 :type 'character
41 :group 'picture)
42 (defcustom picture-rectangle-ctr ?+
43 "Character `picture-draw-rectangle' uses for top right corners."
44 :type 'character
45 :group 'picture)
46 (defcustom picture-rectangle-cbr ?+
47 "Character `picture-draw-rectangle' uses for bottom right corners."
48 :type 'character
49 :group 'picture)
50 (defcustom picture-rectangle-cbl ?+
51 "Character `picture-draw-rectangle' uses for bottom left corners."
52 :type 'character
53 :group 'picture)
54 (defcustom picture-rectangle-v ?|
55 "Character `picture-draw-rectangle' uses for vertical lines."
56 :type 'character
57 :group 'picture)
58 (defcustom picture-rectangle-h ?-
59 "Character `picture-draw-rectangle' uses for horizontal lines."
60 :type 'character
61 :group 'picture)
64 ;; Picture Movement Commands
66 (defvar picture-desired-column 0
67 "Desired current column for Picture mode.
68 When a cursor is on a wide-column character (e.g. Chinese,
69 Japanese, Korean), this may be different from `current-column'.")
72 (defun picture-update-desired-column (adjust-to-current)
73 "Maybe update `picture-desired-column'.
74 If the value of `picture-desired-column' is more than one column
75 from `current-column', or if the argument ADJUST-TO-CURRENT is
76 non-nil, set it to the current column. Return `current-column'."
77 (let ((current-column (current-column)))
78 (if (or adjust-to-current
79 (< picture-desired-column (1- current-column))
80 (> picture-desired-column (1+ current-column)))
81 (setq picture-desired-column current-column))
82 current-column))
84 (defun picture-beginning-of-line (&optional arg)
85 "Position point at the beginning of the line.
86 With ARG not nil, move forward ARG - 1 lines first.
87 If scan reaches end of buffer, stop there without error."
88 (interactive "^P")
89 (if arg (forward-line (1- (prefix-numeric-value arg))))
90 (beginning-of-line)
91 (setq picture-desired-column 0))
93 (defun picture-end-of-line (&optional arg)
94 "Position point after last non-blank character on current line.
95 With ARG not nil, move forward ARG - 1 lines first.
96 If scan reaches end of buffer, stop there without error."
97 (interactive "^P")
98 (if arg (forward-line (1- (prefix-numeric-value arg))))
99 (beginning-of-line)
100 (skip-chars-backward " \t" (prog1 (point) (end-of-line)))
101 (setq picture-desired-column (current-column)))
103 (defun picture-forward-column (arg &optional interactive)
104 "Move cursor right, making whitespace if necessary.
105 With argument, move that many columns."
106 (interactive "^p\nd")
107 (let (deactivate-mark)
108 (picture-update-desired-column interactive)
109 (setq picture-desired-column (max 0 (+ picture-desired-column arg)))
110 (let ((current-column (move-to-column picture-desired-column t)))
111 (if (and (> current-column picture-desired-column)
112 (< arg 0))
113 ;; It seems that we have just tried to move to the right
114 ;; column of a multi-column character.
115 (forward-char -1)))))
117 (defun picture-backward-column (arg &optional interactive)
118 "Move cursor left, making whitespace if necessary.
119 With argument, move that many columns."
120 (interactive "^p\nd")
121 (picture-update-desired-column interactive)
122 (picture-forward-column (- arg)))
124 (defun picture-move-down (arg)
125 "Move vertically down, making whitespace if necessary.
126 With argument, move that many lines."
127 (interactive "^p")
128 (let (deactivate-mark)
129 (picture-update-desired-column nil)
130 (picture-newline arg)
131 (let ((current-column (move-to-column picture-desired-column t)))
132 (if (> current-column picture-desired-column)
133 (forward-char -1)))))
135 (defvar picture-vertical-step 0
136 "Amount to move vertically after text character in Picture mode.")
138 (defvar picture-horizontal-step 1
139 "Amount to move horizontally after text character in Picture mode.")
141 (defun picture-move-up (arg)
142 "Move vertically up, making whitespace if necessary.
143 With argument, move that many lines."
144 (interactive "^p")
145 (picture-update-desired-column nil)
146 (picture-move-down (- arg)))
148 (defun picture-movement-right ()
149 "Move right after self-inserting character in Picture mode."
150 (interactive)
151 (picture-set-motion 0 1))
153 (defun picture-movement-left ()
154 "Move left after self-inserting character in Picture mode."
155 (interactive)
156 (picture-set-motion 0 -1))
158 (defun picture-movement-up ()
159 "Move up after self-inserting character in Picture mode."
160 (interactive)
161 (picture-set-motion -1 0))
163 (defun picture-movement-down ()
164 "Move down after self-inserting character in Picture mode."
165 (interactive)
166 (picture-set-motion 1 0))
168 (defun picture-movement-nw (&optional arg)
169 "Move up and left after self-inserting character in Picture mode.
170 With prefix argument, move up and two-column left."
171 (interactive "P")
172 (picture-set-motion -1 (if arg -2 -1)))
174 (defun picture-movement-ne (&optional arg)
175 "Move up and right after self-inserting character in Picture mode.
176 With prefix argument, move up and two-column right."
177 (interactive "P")
178 (picture-set-motion -1 (if arg 2 1)))
180 (defun picture-movement-sw (&optional arg)
181 "Move down and left after self-inserting character in Picture mode.
182 With prefix argument, move down and two-column left."
183 (interactive "P")
184 (picture-set-motion 1 (if arg -2 -1)))
186 (defun picture-movement-se (&optional arg)
187 "Move down and right after self-inserting character in Picture mode.
188 With prefix argument, move down and two-column right."
189 (interactive "P")
190 (picture-set-motion 1 (if arg 2 1)))
192 (defun picture-set-motion (vert horiz)
193 "Set VERTICAL and HORIZONTAL increments for movement in Picture mode.
194 The mode line is updated to reflect the current direction."
195 (setq picture-vertical-step vert
196 picture-horizontal-step horiz)
197 (setq mode-name
198 (format "Picture:%s"
199 (nth (+ 2 (% horiz 3) (* 5 (1+ (% vert 2))))
200 '(wnw nw up ne ene Left left none right Right
201 wsw sw down se ese))))
202 (force-mode-line-update)
203 (message ""))
205 (defun picture-move ()
206 "Move in direction of `picture-vertical-step' and `picture-horizontal-step'."
207 (if (/= picture-vertical-step 0)
208 (picture-move-down picture-vertical-step))
209 (if (/= picture-horizontal-step 0)
210 (picture-forward-column picture-horizontal-step)))
212 (defun picture-motion (arg)
213 "Move point in direction of current picture motion in Picture mode.
214 With ARG do it that many times. Useful for delineating rectangles in
215 conjunction with diagonal picture motion.
216 Use \"\\[command-apropos] picture-movement\" to see commands which control motion."
217 (interactive "^p")
218 (picture-move-down (* arg picture-vertical-step))
219 (picture-forward-column (* arg picture-horizontal-step)))
221 (defun picture-motion-reverse (arg)
222 "Move point in direction opposite of current picture motion in Picture mode.
223 With ARG do it that many times. Useful for delineating rectangles in
224 conjunction with diagonal picture motion.
225 Use \"\\[command-apropos] picture-movement\" to see commands which control motion."
226 (interactive "^p")
227 (picture-motion (- arg)))
229 (defun picture-mouse-set-point (event)
230 "Move point to the position of EVENT, making whitespace if necessary."
231 (interactive "e")
232 (let ((position (event-start event)))
233 (unless (posn-area position) ; Ignore EVENT unless in text area
234 (let* ((window (posn-window position))
235 (frame (if (framep window) window (window-frame window)))
236 (pair (posn-x-y position))
237 (start-pos (window-start window))
238 (start-pair (posn-x-y (posn-at-point start-pos)))
239 (dx (- (car pair) (car start-pair)))
240 (dy (- (cdr pair) (cdr start-pair)))
241 (char-ht (frame-char-height frame))
242 (spacing (when (display-graphic-p frame)
243 (or (with-current-buffer (window-buffer window)
244 line-spacing)
245 (frame-parameter frame 'line-spacing)))))
246 (cond ((floatp spacing)
247 (setq spacing (truncate (* spacing char-ht))))
248 ((null spacing)
249 (setq spacing 0)))
250 (goto-char start-pos)
251 (picture-move-down (/ dy (+ char-ht spacing)))
252 (picture-forward-column (/ dx (frame-char-width frame)))))))
255 ;; Picture insertion and deletion.
257 (defun picture-insert (ch arg)
258 (let* ((width (char-width ch))
259 ;; We must be sure that the succeeding insertion won't delete
260 ;; the just inserted character.
261 (picture-horizontal-step
262 (if (and (= picture-vertical-step 0)
263 (> width 1)
264 (< (abs picture-horizontal-step) 2))
265 (* picture-horizontal-step 2)
266 picture-horizontal-step)))
267 (while (> arg 0)
268 (setq arg (1- arg))
269 (if (/= picture-desired-column (current-column))
270 (move-to-column picture-desired-column t))
271 (let ((col (+ picture-desired-column width)))
272 (or (eolp)
273 (let ((pos (point)))
274 (move-to-column col t)
275 (let ((old-width (string-width (buffer-substring pos (point)))))
276 (delete-region pos (point))
277 (when (> old-width width)
278 (insert-char ? (- old-width width))
279 (goto-char pos))))))
280 (insert ch)
281 (forward-char -1)
282 (picture-move))))
284 (defun picture-self-insert (arg)
285 "Insert this character in place of character previously at the cursor.
286 The cursor then moves in the direction you previously specified
287 with the commands `picture-movement-right', `picture-movement-up', etc.
288 Use \"\\[command-apropos] picture-movement\" to see those commands."
289 (interactive "p")
290 (picture-update-desired-column (not (eq this-command last-command)))
291 (picture-insert last-command-event arg)) ; Always a character in this case.
293 (defun picture-clear-column (arg)
294 "Clear out ARG columns after point without moving."
295 (interactive "p")
296 (let* ((original-col (current-column))
297 (target-col (max 0 (+ original-col arg)))
298 pos)
299 (move-to-column target-col t)
300 (setq pos (point))
301 (move-to-column original-col)
302 (delete-region pos (point))
303 (save-excursion
304 (indent-to (max target-col original-col))))
305 (setq picture-desired-column (current-column)))
307 (defun picture-backward-clear-column (arg)
308 "Clear out ARG columns before point, moving back over them."
309 (interactive "p")
310 (picture-clear-column (- arg)))
312 (defun picture-clear-line (arg)
313 "Clear out rest of line; if at end of line, advance to next line.
314 Cleared-out line text goes into the kill ring, as do newlines that are
315 advanced over. With argument, clear out (and save in kill ring) that
316 many lines."
317 (interactive "P")
318 (if arg
319 (progn
320 (setq arg (prefix-numeric-value arg))
321 (kill-line arg)
322 (newline (if (> arg 0) arg (- arg))))
323 (if (looking-at "[ \t]*$")
324 (kill-ring-save (point) (progn (forward-line 1) (point)))
325 (kill-region (point) (progn (end-of-line) (point))))))
327 (defun picture-newline (arg)
328 "Move to the beginning of the following line.
329 With argument, moves that many lines (up, if negative argument);
330 always moves to the beginning of a line."
331 (interactive "^p")
332 (let ((start (point))
333 (lines-left (forward-line arg)))
334 (if (and (eobp)
335 (> (point) start))
336 (newline))
337 (if (> lines-left 0)
338 (newline lines-left))))
340 (defun picture-open-line (arg)
341 "Insert ARG empty lines after the current line.
342 ARG must be positive.
343 Interactively, ARG is the numeric argument, and defaults to 1."
344 (interactive "p")
345 (save-excursion
346 (end-of-line)
347 (open-line arg)))
349 (defun picture-duplicate-line ()
350 "Insert a duplicate of the current line, below it."
351 (interactive)
352 (save-excursion
353 (let ((contents
354 (buffer-substring
355 (progn (beginning-of-line) (point))
356 (progn (picture-newline 1) (point)))))
357 (forward-line -1)
358 (insert contents))))
360 ;; Like replace-match, but overwrites.
361 (defun picture-replace-match (newtext fixedcase literal)
362 (let (ocolumn change pos)
363 (goto-char (setq pos (match-end 0)))
364 (setq ocolumn (current-column))
365 ;; Make the replacement and undo it, to see how it changes the length.
366 (let ((buffer-undo-list nil)
367 list1)
368 (replace-match newtext fixedcase literal)
369 (setq change (- (current-column) ocolumn))
370 (setq list1 buffer-undo-list)
371 (while list1
372 (setq list1 (primitive-undo 1 list1))))
373 (goto-char pos)
374 (if (> change 0)
375 (delete-region (point)
376 (progn
377 (move-to-column (+ change (current-column)) t)
378 (point))))
379 (replace-match newtext fixedcase literal)
380 (if (< change 0)
381 (insert-char ?\s (- change)))))
383 ;; Picture Tabs
385 (defcustom picture-tab-chars "!-~"
386 "A character set which controls behavior of commands.
387 \\[picture-set-tab-stops] and \\[picture-tab-search].
388 The syntax for this variable is like the syntax used inside of `[...]'
389 in a regular expression--but without the `[' and the `]'.
390 It is NOT a regular expression, any regexp special characters will be quoted.
391 It defines a set of \"interesting characters\" to look for when setting
392 \(or searching for) tab stops, initially \"!-~\" (all printing characters).
393 For example, suppose that you are editing a table which is formatted thus:
394 | foo | bar + baz | 23 *
395 | bubbles | and + etc | 97 *
396 and that `picture-tab-chars' is \"|+*\". Then invoking
397 \\[picture-set-tab-stops] on either of the previous lines would result
398 in the following tab stops
399 : : : :
400 Another example - \"A-Za-z0-9\" would produce the tab stops
401 : : : :
403 Note that if you want the character `-' to be in the set, it must be
404 included in a range or else appear in a context where it cannot be
405 taken for indicating a range (e.g. \"-A-Z\" declares the set to be the
406 letters `A' through `Z' and the character `-'). If you want the
407 character `\\' in the set it must be preceded by itself: \"\\\\\".
409 The command \\[picture-tab-search] is defined to move beneath (or to) a
410 character belonging to this set independent of the tab stops list."
411 :type 'string
412 :group 'picture)
414 (defun picture-set-tab-stops (&optional arg)
415 "Set value of `tab-stop-list' according to context of this line.
416 This controls the behavior of \\[picture-tab]. A tab stop is set at
417 every column occupied by an \"interesting character\" that is preceded
418 by whitespace. Interesting characters are defined by the variable
419 `picture-tab-chars', see its documentation for an example of usage.
420 With ARG, just (re)set `tab-stop-list' to its default value. The tab
421 stops computed are displayed in the minibuffer with `:' at each stop."
422 (interactive "P")
423 (save-excursion
424 (let (tabs)
425 (if arg
426 (setq tabs (or (default-value 'tab-stop-list)
427 (indent-accumulate-tab-stops (window-width))))
428 (let ((regexp (concat "[ \t]+[" (regexp-quote picture-tab-chars) "]")))
429 (beginning-of-line)
430 (let ((bol (point)))
431 (end-of-line)
432 (while (re-search-backward regexp bol t)
433 (skip-chars-forward " \t")
434 (setq tabs (cons (current-column) tabs)))
435 (if (null tabs)
436 (error "No characters in set %s on this line"
437 (regexp-quote picture-tab-chars))))))
438 (setq tab-stop-list tabs)
439 (let ((blurb (make-string (1+ (nth (1- (length tabs)) tabs)) ?\ )))
440 (while tabs
441 (aset blurb (car tabs) ?:)
442 (setq tabs (cdr tabs)))
443 (message blurb)))))
445 (defun picture-tab-search (&optional arg)
446 "Move to column beneath next interesting char in previous line.
447 With ARG move to column occupied by next interesting character in this
448 line. The character must be preceded by whitespace.
449 \"interesting characters\" are defined by variable `picture-tab-chars'.
450 If no such character is found, move to beginning of line."
451 (interactive "^P")
452 (let ((target (current-column)))
453 (save-excursion
454 (if (and (not arg)
455 (progn
456 (beginning-of-line)
457 (skip-chars-backward
458 (concat "^" (regexp-quote picture-tab-chars))
459 (point-min))
460 (not (bobp))))
461 (move-to-column target))
462 (if (re-search-forward
463 (concat "[ \t]+[" (regexp-quote picture-tab-chars) "]")
464 (line-end-position)
465 'move)
466 (setq target (1- (current-column)))
467 (setq target nil)))
468 (if target
469 (move-to-column target t)
470 (beginning-of-line))))
472 (defun picture-tab (&optional arg)
473 "Tab transparently (just move point) to next tab stop.
474 With prefix arg, overwrite the traversed text with spaces. The tab stop
475 list can be changed by \\[picture-set-tab-stops] and \\[edit-tab-stops].
476 See also documentation for variable `picture-tab-chars'."
477 (interactive "^P")
478 (let* ((opoint (point)))
479 (move-to-tab-stop)
480 (if arg
481 (let (indent-tabs-mode
482 (column (current-column)))
483 (delete-region opoint (point))
484 (indent-to column)))))
486 ;; Picture Rectangles
488 (defvar picture-killed-rectangle nil
489 "Rectangle killed or copied by \\[picture-clear-rectangle] in Picture mode.
490 The contents can be retrieved by \\[picture-yank-rectangle]")
492 (defun picture-clear-rectangle (start end &optional killp)
493 "Clear and save rectangle delineated by point and mark.
494 The rectangle is saved for yanking by \\[picture-yank-rectangle] and replaced
495 with whitespace. The previously saved rectangle, if any, is lost. With
496 prefix argument, the rectangle is actually killed, shifting remaining text."
497 (interactive "r\nP")
498 (setq picture-killed-rectangle (picture-snarf-rectangle start end killp)))
500 (defun picture-clear-rectangle-to-register (start end register &optional killp)
501 "Clear rectangle delineated by point and mark into REGISTER.
502 The rectangle is saved in REGISTER and replaced with whitespace. With
503 prefix argument, the rectangle is actually killed, shifting remaining text.
505 Interactively, reads the register using `register-read-with-preview'."
506 (interactive (list (region-beginning) (region-end)
507 (register-read-with-preview "Rectangle to register: ")
508 current-prefix-arg))
509 (set-register register (picture-snarf-rectangle start end killp)))
511 (defun picture-snarf-rectangle (start end &optional killp)
512 (let ((column (current-column))
513 (indent-tabs-mode nil))
514 (prog1 (save-excursion
515 (if killp
516 (delete-extract-rectangle start end)
517 (prog1 (extract-rectangle start end)
518 (clear-rectangle start end))))
519 (move-to-column column t))))
521 (defun picture-yank-rectangle (&optional insertp)
522 "Overlay rectangle saved by \\[picture-clear-rectangle]
523 The rectangle is positioned with upper left corner at point, overwriting
524 existing text. With prefix argument, the rectangle is inserted instead,
525 shifting existing text. Leaves mark at one corner of rectangle and
526 point at the other (diagonally opposed) corner."
527 (interactive "P")
528 (if (not (consp picture-killed-rectangle))
529 (error "No rectangle saved")
530 (picture-insert-rectangle picture-killed-rectangle insertp)))
532 (defun picture-yank-at-click (click arg)
533 "Insert the last killed rectangle at the position clicked on.
534 Also move point to one end of the text thus inserted (normally the end).
535 Prefix arguments are interpreted as with \\[yank].
536 If `mouse-yank-at-point' is non-nil, insert at point
537 regardless of where you click."
538 (interactive "e\nP")
539 (or mouse-yank-at-point (mouse-set-point click))
540 (picture-yank-rectangle arg))
542 (defun picture-yank-rectangle-from-register (register &optional insertp)
543 "Overlay rectangle saved in REGISTER.
544 The rectangle is positioned with upper left corner at point, overwriting
545 existing text. With prefix argument, the rectangle is
546 inserted instead, shifting existing text. Leaves mark at one corner
547 of rectangle and point at the other (diagonally opposed) corner.
549 Interactively, reads the register using `register-read-with-preview'."
550 (interactive (list (register-read-with-preview "Rectangle from register: ")
551 current-prefix-arg))
552 (let ((rectangle (get-register register)))
553 (if (not (consp rectangle))
554 (error "Register %c does not contain a rectangle" register)
555 (picture-insert-rectangle rectangle insertp))))
557 (defun picture-insert-rectangle (rectangle &optional insertp)
558 "Overlay RECTANGLE with upper left corner at point.
559 Optional argument INSERTP, if non-nil causes RECTANGLE to be inserted.
560 Leaves the region surrounding the rectangle."
561 (let ((indent-tabs-mode nil))
562 (if (not insertp)
563 (save-excursion
564 (delete-rectangle (point)
565 (progn
566 (picture-forward-column (length (car rectangle)))
567 (picture-move-down (1- (length rectangle)))
568 (point)))))
569 (push-mark)
570 (insert-rectangle rectangle)))
572 (defun picture-current-line ()
573 "Return the vertical position of point. Top line is 1."
574 (+ (count-lines (point-min) (point))
575 (if (= (current-column) 0) 1 0)))
577 (defun picture-draw-rectangle (start end)
578 "Draw a rectangle around region."
579 (interactive "*r") ; start will be less than end
580 (let* ((sl (picture-current-line))
581 (sc (current-column))
582 (pvs picture-vertical-step)
583 (phs picture-horizontal-step)
584 (c1 (progn (goto-char start) (current-column)))
585 (r1 (picture-current-line))
586 (c2 (progn (goto-char end) (current-column)))
587 (r2 (picture-current-line))
588 (right (max c1 c2))
589 (left (min c1 c2))
590 (top (min r1 r2))
591 (bottom (max r1 r2)))
592 (goto-char (point-min))
593 (forward-line (1- top))
594 (move-to-column left t)
595 (picture-update-desired-column t)
597 (picture-movement-right)
598 (picture-insert picture-rectangle-ctl 1)
599 (picture-insert picture-rectangle-h (- right picture-desired-column))
601 (picture-movement-down)
602 (picture-insert picture-rectangle-ctr 1)
603 (picture-insert picture-rectangle-v (- bottom (picture-current-line)))
605 (picture-movement-left)
606 (picture-insert picture-rectangle-cbr 1)
607 (picture-insert picture-rectangle-h (- picture-desired-column left))
609 (picture-movement-up)
610 (picture-insert picture-rectangle-cbl 1)
611 (picture-insert picture-rectangle-v (- (picture-current-line) top))
613 (picture-set-motion pvs phs)
614 (goto-char (point-min))
615 (forward-line (1- sl))
616 (move-to-column sc t)))
619 ;; Picture Keymap, entry and exit points.
621 (defalias 'picture-delete-char 'delete-char)
623 (defvar picture-mode-map
624 (let ((map (make-keymap)))
625 (define-key map [remap self-insert-command] 'picture-self-insert)
626 (define-key map [remap self-insert-command] 'picture-self-insert)
627 (define-key map [remap completion-separator-self-insert-command]
628 'picture-self-insert)
629 (define-key map [remap completion-separator-self-insert-autofilling]
630 'picture-self-insert)
631 (define-key map [remap forward-char] 'picture-forward-column)
632 (define-key map [remap right-char] 'picture-forward-column)
633 (define-key map [remap backward-char] 'picture-backward-column)
634 (define-key map [remap left-char] 'picture-backward-column)
635 (define-key map [remap delete-char] 'picture-clear-column)
636 ;; There are two possibilities for what is normally on DEL.
637 (define-key map [remap backward-delete-char-untabify]
638 'picture-backward-clear-column)
639 (define-key map [remap delete-backward-char] 'picture-backward-clear-column)
640 (define-key map [remap kill-line] 'picture-clear-line)
641 (define-key map [remap open-line] 'picture-open-line)
642 (define-key map [remap newline] 'picture-newline)
643 (define-key map [remap newline-and-indent] 'picture-duplicate-line)
644 (define-key map [remap next-line] 'picture-move-down)
645 (define-key map [remap previous-line] 'picture-move-up)
646 (define-key map [remap move-beginning-of-line] 'picture-beginning-of-line)
647 (define-key map [remap move-end-of-line] 'picture-end-of-line)
648 (define-key map [remap mouse-set-point] 'picture-mouse-set-point)
649 (define-key map "\C-c\C-d" 'picture-delete-char)
650 (define-key map "\e\t" 'picture-toggle-tab-state)
651 (define-key map "\t" 'picture-tab)
652 (define-key map "\e\t" 'picture-tab-search)
653 (define-key map "\C-c\t" 'picture-set-tab-stops)
654 (define-key map "\C-c\C-k" 'picture-clear-rectangle)
655 (define-key map "\C-c\C-w" 'picture-clear-rectangle-to-register)
656 (define-key map "\C-c\C-y" 'picture-yank-rectangle)
657 (define-key map "\C-c\C-x" 'picture-yank-rectangle-from-register)
658 (define-key map "\C-c\C-r" 'picture-draw-rectangle)
659 (define-key map "\C-c\C-c" 'picture-mode-exit)
660 (define-key map "\C-c\C-f" 'picture-motion)
661 (define-key map "\C-c\C-b" 'picture-motion-reverse)
662 (define-key map "\C-c<" 'picture-movement-left)
663 (define-key map "\C-c>" 'picture-movement-right)
664 (define-key map "\C-c^" 'picture-movement-up)
665 (define-key map "\C-c." 'picture-movement-down)
666 (define-key map "\C-c`" 'picture-movement-nw)
667 (define-key map "\C-c'" 'picture-movement-ne)
668 (define-key map "\C-c/" 'picture-movement-sw)
669 (define-key map "\C-c\\" 'picture-movement-se)
670 (define-key map [(control ?c) left] 'picture-movement-left)
671 (define-key map [(control ?c) right] 'picture-movement-right)
672 (define-key map [(control ?c) up] 'picture-movement-up)
673 (define-key map [(control ?c) down] 'picture-movement-down)
674 (define-key map [(control ?c) home] 'picture-movement-nw)
675 (define-key map [(control ?c) prior] 'picture-movement-ne)
676 (define-key map [(control ?c) end] 'picture-movement-sw)
677 (define-key map [(control ?c) next] 'picture-movement-se)
678 map)
679 "Keymap used in `picture-mode'.")
681 (defcustom picture-mode-hook nil
682 "If non-nil, its value is called on entry to Picture mode.
683 Picture mode is invoked by the command \\[picture-mode]."
684 :type 'hook
685 :group 'picture)
687 (defvar picture-mode-old-local-map)
688 (defvar picture-mode-old-mode-name)
689 (defvar picture-mode-old-major-mode)
690 (defvar picture-mode-old-truncate-lines)
692 ;;;###autoload
693 (defun picture-mode ()
694 "Switch to Picture mode, in which a quarter-plane screen model is used.
695 \\<picture-mode-map>
696 Printing characters replace instead of inserting themselves with motion
697 afterwards settable by these commands:
699 Move left after insertion: \\[picture-movement-left]
700 Move right after insertion: \\[picture-movement-right]
701 Move up after insertion: \\[picture-movement-up]
702 Move down after insertion: \\[picture-movement-down]
704 Move northwest (nw) after insertion: \\[picture-movement-nw]
705 Move northeast (ne) after insertion: \\[picture-movement-ne]
706 Move southwest (sw) after insertion: \\[picture-movement-sw]
707 Move southeast (se) after insertion: \\[picture-movement-se]
709 Move westnorthwest (wnw) after insertion: C-u \\[picture-movement-nw]
710 Move eastnortheast (ene) after insertion: C-u \\[picture-movement-ne]
711 Move westsouthwest (wsw) after insertion: C-u \\[picture-movement-sw]
712 Move eastsoutheast (ese) after insertion: C-u \\[picture-movement-se]
714 The current direction is displayed in the mode line. The initial
715 direction is right. Whitespace is inserted and tabs are changed to
716 spaces when required by movement. You can move around in the buffer
717 with these commands:
719 Move vertically to SAME column in previous line: \\[picture-move-down]
720 Move vertically to SAME column in next line: \\[picture-move-up]
721 Move to column following last
722 non-whitespace character: \\[picture-end-of-line]
723 Move right, inserting spaces if required: \\[picture-forward-column]
724 Move left changing tabs to spaces if required: \\[picture-backward-column]
725 Move in direction of current picture motion: \\[picture-motion]
726 Move opposite to current picture motion: \\[picture-motion-reverse]
727 Move to beginning of next line: \\[next-line]
729 You can edit tabular text with these commands:
731 Move to column beneath (or at) next interesting
732 character (see variable `picture-tab-chars'): \\[picture-tab-search]
733 Move to next stop in tab stop list: \\[picture-tab]
734 Set tab stops according to context of this line: \\[picture-set-tab-stops]
735 (With ARG, resets tab stops to default value.)
736 Change the tab stop list: \\[edit-tab-stops]
738 You can manipulate text with these commands:
739 Clear ARG columns after point without moving: \\[picture-clear-column]
740 Delete char at point: \\[picture-delete-char]
741 Clear ARG columns backward: \\[picture-backward-clear-column]
742 Clear ARG lines, advancing over them: \\[picture-clear-line]
743 (the cleared text is saved in the kill ring)
744 Open blank line(s) beneath current line: \\[picture-open-line]
746 You can manipulate rectangles with these commands:
747 Clear a rectangle and save it: \\[picture-clear-rectangle]
748 Clear a rectangle, saving in a named register: \\[picture-clear-rectangle-to-register]
749 Insert currently saved rectangle at point: \\[picture-yank-rectangle]
750 Insert rectangle from named register: \\[picture-yank-rectangle-from-register]
751 Draw a rectangular box around mark and point: \\[picture-draw-rectangle]
752 Copies a rectangle to a register: \\[copy-rectangle-to-register]
753 Undo effects of rectangle overlay commands: \\[undo]
755 You can return to the previous mode with \\[picture-mode-exit], which
756 also strips trailing whitespace from every line. Stripping is suppressed
757 by supplying an argument.
759 Entry to this mode calls the value of `picture-mode-hook' if non-nil.
761 Note that Picture mode commands will work outside of Picture mode, but
762 they are not by default assigned to keys."
763 (interactive)
764 (if (eq major-mode 'picture-mode)
765 (error "You are already editing a picture")
766 (set (make-local-variable 'picture-mode-old-local-map) (current-local-map))
767 (use-local-map picture-mode-map)
768 (set (make-local-variable 'picture-mode-old-mode-name) mode-name)
769 (set (make-local-variable 'picture-mode-old-major-mode) major-mode)
770 (setq major-mode 'picture-mode)
771 (set (make-local-variable 'picture-killed-rectangle) nil)
772 (set (make-local-variable 'tab-stop-list) (default-value 'tab-stop-list))
773 (set (make-local-variable 'picture-tab-chars)
774 (default-value 'picture-tab-chars))
775 (make-local-variable 'picture-vertical-step)
776 (make-local-variable 'picture-horizontal-step)
777 (set (make-local-variable 'picture-mode-old-truncate-lines) truncate-lines)
778 (setq truncate-lines t)
779 (picture-set-motion 0 1)
781 ;; edit-picture-hook is what we used to run, picture-mode-hook is in doc.
782 (run-hooks 'edit-picture-hook 'picture-mode-hook)
783 (message "Type %s in this buffer to return it to %s mode."
784 (substitute-command-keys "\\[picture-mode-exit]")
785 picture-mode-old-mode-name)))
787 ;;;###autoload
788 (defalias 'edit-picture 'picture-mode)
790 (defun picture-mode-exit (&optional nostrip)
791 "Undo `picture-mode' and return to previous major mode.
792 With NOSTRIP omitted or nil, strip whitespace from end of every line
793 in Picture buffer; otherwise, just return to previous mode.
794 Interactively, NOSTRIP is the prefix argument, and defaults to nil.
795 Runs `picture-mode-exit-hook' at the end."
796 (interactive "P")
797 (if (not (eq major-mode 'picture-mode))
798 (error "You aren't editing a Picture")
799 (if (not nostrip) (delete-trailing-whitespace))
800 (setq mode-name picture-mode-old-mode-name)
801 (use-local-map picture-mode-old-local-map)
802 (setq major-mode picture-mode-old-major-mode)
803 (kill-local-variable 'tab-stop-list)
804 (setq truncate-lines picture-mode-old-truncate-lines)
805 (force-mode-line-update)
806 (run-hooks 'picture-mode-exit-hook)))
808 (provide 'picture)
810 ;;; picture.el ends here