Mercurial > emacs
annotate lisp/macros.el @ 9023:1f1081c31047
Initial revision
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 23 Sep 1994 18:35:06 +0000 |
parents | cc7cd83ccf3f |
children | 0e1748cc2f32 |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
427
diff
changeset
|
1 ;;; macros.el --- non-primitive commands for keyboard macros. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
427
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 1986, 1987, 1992, 1994 Free Software Foundation, Inc. |
845 | 4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1470
diff
changeset
|
6 ;; Keywords: abbrev |
36 | 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) |
36 | 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 | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
24 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
25 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
26 ;; Extension commands for keyboard macros. These permit you to assign |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
27 ;; a name to the last-defined keyboard macro, expand and insert the |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
28 ;; lisp corresponding to a macro, query the user from within a macro, |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
29 ;; or apply a macro to each line in the reason. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
30 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
31 ;;; Code: |
36 | 32 |
256 | 33 ;;;###autoload |
36 | 34 (defun name-last-kbd-macro (symbol) |
35 "Assign a name to the last keyboard macro defined. | |
216 | 36 Argument SYMBOL is the name to define. |
36 | 37 The symbol's function definition becomes the keyboard macro string. |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
38 Such a \"function\" cannot be called from Lisp, but it is a valid editor command." |
36 | 39 (interactive "SName for last kbd macro: ") |
40 (or last-kbd-macro | |
41 (error "No keyboard macro defined")) | |
42 (and (fboundp symbol) | |
43 (not (stringp (symbol-function symbol))) | |
4331
c75a5c7d4f39
(name-last-kbd-macro): Handle macros that are vectors.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
44 (not (vectorp (symbol-function symbol))) |
36 | 45 (error "Function %s is already defined and not a keyboard macro." |
46 symbol)) | |
47 (fset symbol last-kbd-macro)) | |
48 | |
256 | 49 ;;;###autoload |
36 | 50 (defun insert-kbd-macro (macroname &optional keys) |
51 "Insert in buffer the definition of kbd macro NAME, as Lisp code. | |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
52 Optional second arg KEYS means also record the keys it is on |
1469
af4fe5e670f2
(insert-kbd-macro): Replace nonprinting chars with escapes.
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
53 \(this is the prefix argument, when calling interactively). |
36 | 54 |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
55 This Lisp code will, when executed, define the kbd macro with the same |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
56 definition it has now. If you say to record the keys, the Lisp code |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
57 will also rebind those keys to the macro. Only global key bindings |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
58 are recorded since executing this Lisp code always makes global |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
59 bindings. |
36 | 60 |
1469
af4fe5e670f2
(insert-kbd-macro): Replace nonprinting chars with escapes.
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
61 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs', |
36 | 62 use this command, and then save the file." |
63 (interactive "CInsert kbd macro (name): \nP") | |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
64 (let (definition) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
65 (if (string= (symbol-name macroname) "") |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
66 (progn |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
67 (setq macroname 'last-kbd-macro definition last-kbd-macro) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
68 (insert "(setq ")) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
69 (setq definition (symbol-function macroname)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
70 (insert "(fset '")) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
71 (prin1 macroname (current-buffer)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
72 (insert "\n ") |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
73 (let ((beg (point)) end) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
74 (prin1 definition (current-buffer)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
75 (setq end (point-marker)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
76 (goto-char beg) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
77 (while (< (point) end) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
78 (let ((char (following-char))) |
6125
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
79 (cond ((= char 0) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
80 (delete-region (point) (1+ (point))) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
81 (insert "\\C-@")) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
82 ((< char 27) |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
83 (delete-region (point) (1+ (point))) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
84 (insert "\\C-" (+ 96 char))) |
6125
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
85 ((< char 32) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
86 (delete-region (point) (1+ (point))) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
87 (insert "\\C-" (+ 64 char))) |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
88 ((< char 127) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
89 (forward-char 1)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
90 ((= char 127) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
91 (delete-region (point) (1+ (point))) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
92 (insert "\\C-?")) |
6125
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
93 ((= char 128) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
94 (delete-region (point) (1+ (point))) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
95 (insert "\\M-\\C-@")) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
96 ((< char 155) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
97 (delete-region (point) (1+ (point))) |
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
98 (insert "\\M-\\C-" (- char 32))) |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
99 ((< char 160) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
100 (delete-region (point) (1+ (point))) |
6125
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
101 (insert "\\M-\\C-" (- char 64))) |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
102 ((< char 255) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
103 (delete-region (point) (1+ (point))) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
104 (insert "\\M-" (- char 128))) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
105 ((= char 255) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
106 (delete-region (point) (1+ (point))) |
6125
54625de47273
(insert-kbd-macro): Handle C-@, C-[, etc. properly and their meta variants too.
Richard M. Stallman <rms@gnu.org>
parents:
5773
diff
changeset
|
107 (insert "\\M-\\C-?")))))) |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
108 (insert ")\n") |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
109 (if keys |
5773
54baa5a15850
(insert-kbd-macro): Pass (keymap) as KEYMAP arg to where-is-internal.
Richard M. Stallman <rms@gnu.org>
parents:
5307
diff
changeset
|
110 (let ((keys (where-is-internal macroname '(keymap)))) |
1470
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
111 (while keys |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
112 (insert "(global-set-key ") |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
113 (prin1 (car keys) (current-buffer)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
114 (insert " '") |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
115 (prin1 macroname (current-buffer)) |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
116 (insert ")\n") |
eb4043bd65ef
(insert-kbd-macros): If arg is empty, use last macro as default.
Richard M. Stallman <rms@gnu.org>
parents:
1469
diff
changeset
|
117 (setq keys (cdr keys))))))) |
36 | 118 |
256 | 119 ;;;###autoload |
36 | 120 (defun kbd-macro-query (flag) |
121 "Query user during kbd macro execution. | |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
122 With prefix argument, enters recursive edit, reading keyboard |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
123 commands even within a kbd macro. You can give different commands |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
124 each time the macro executes. |
2708 | 125 Without prefix argument, asks whether to continue running the macro. |
126 Your options are: \\<query-replace-map> | |
127 \\[act] Finish this iteration normally and continue with the next. | |
128 \\[skip] Skip the rest of this iteration, and start the next. | |
129 \\[exit] Stop the macro entirely right now. | |
130 \\[recenter] Redisplay the screen, then ask again. | |
131 \\[edit] Enter recursive edit; ask again when you exit from that." | |
36 | 132 (interactive "P") |
133 (or executing-macro | |
134 defining-kbd-macro | |
135 (error "Not defining or executing kbd macro")) | |
136 (if flag | |
137 (let (executing-macro defining-kbd-macro) | |
138 (recursive-edit)) | |
139 (if (not executing-macro) | |
140 nil | |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
141 (let ((loop t) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
142 (msg (substitute-command-keys |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
143 "Proceed with macro?\\<query-replace-map>\ |
2753
c824ba373cc2
(kbd-macro-query): Fix prompt string.
Richard M. Stallman <rms@gnu.org>
parents:
2708
diff
changeset
|
144 (\\[act], \\[skip], \\[exit], \\[recenter], \\[edit]) "))) |
36 | 145 (while loop |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
146 (let ((key (let ((executing-macro nil) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
147 (defining-kbd-macro nil)) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
148 (message msg) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
149 (read-event))) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
150 def) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
151 (setq key (vector key)) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
152 (setq def (lookup-key query-replace-map key)) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
153 (cond ((eq def 'act) |
36 | 154 (setq loop nil)) |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
155 ((eq def 'skip) |
36 | 156 (setq loop nil) |
157 (setq executing-macro "")) | |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
158 ((eq def 'exit) |
36 | 159 (setq loop nil) |
160 (setq executing-macro t)) | |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
161 ((eq def 'recenter) |
36 | 162 (recenter nil)) |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
163 ((eq def 'edit) |
36 | 164 (let (executing-macro defining-kbd-macro) |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
165 (recursive-edit))) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
166 ((eq def 'quit) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
167 (setq quit-flag t)) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
168 (t |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
169 (or (eq def 'help) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
170 (ding)) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
171 (with-output-to-temp-buffer "*Help*" |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
172 (princ |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
173 (substitute-command-keys |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2753
diff
changeset
|
174 "Specify how to proceed with keyboard macro execution. |
2707
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
175 Possibilities: \\<query-replace-map> |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
176 \\[act] Finish this iteration normally and continue with the next. |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
177 \\[skip] Skip the rest of this iteration, and start the next. |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
178 \\[exit] Stop the macro entirely right now. |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
179 \\[recenter] Redisplay the screen, then ask again. |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
180 \\[edit] Enter recursive edit; ask again when you exit from that.")))) |
4661157d5c60
(kbd-macro-query): Use query-replace-map to define answers.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
181 ))))))) |
256 | 182 |
268 | 183 ;;;###autoload |
273 | 184 (defun apply-macro-to-region-lines (top bottom &optional macro) |
391 | 185 "For each complete line between point and mark, move to the beginning |
186 of the line, and run the last keyboard macro. | |
273 | 187 |
188 When called from lisp, this function takes two arguments TOP and | |
189 BOTTOM, describing the current region. TOP must be before BOTTOM. | |
190 The optional third argument MACRO specifies a keyboard macro to | |
191 execute. | |
192 | |
193 This is useful for quoting or unquoting included text, adding and | |
194 removing comments, or producing tables where the entries are regular. | |
195 | |
196 For example, in Usenet articles, sections of text quoted from another | |
197 author are indented, or have each line start with `>'. To quote a | |
198 section of text, define a keyboard macro which inserts `>', put point | |
199 and mark at opposite ends of the quoted section, and use | |
200 `\\[apply-macro-to-region-lines]' to mark the entire section. | |
201 | |
202 Suppose you wanted to build a keyword table in C where each entry | |
203 looked like this: | |
204 | |
205 { \"foo\", foo_data, foo_function }, | |
206 { \"bar\", bar_data, bar_function }, | |
207 { \"baz\", baz_data, baz_function }, | |
208 | |
209 You could enter the names in this format: | |
210 | |
211 foo | |
212 bar | |
213 baz | |
214 | |
215 and write a macro to massage a word into a table entry: | |
216 | |
217 \\C-x ( | |
218 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function }, | |
219 \\C-x ) | |
220 | |
221 and then select the region of un-tablified names and use | |
222 `\\[apply-macro-to-region-lines]' to build the table from the names. | |
223 " | |
224 (interactive "r") | |
391 | 225 (or macro |
226 (progn | |
227 (if (null last-kbd-macro) | |
228 (error "No keyboard macro has been defined.")) | |
229 (setq macro last-kbd-macro))) | |
273 | 230 (save-excursion |
231 (let ((end-marker (progn | |
232 (goto-char bottom) | |
233 (beginning-of-line) | |
427 | 234 (point-marker))) |
235 next-line-marker) | |
273 | 236 (goto-char top) |
237 (if (not (bolp)) | |
238 (forward-line 1)) | |
427 | 239 (setq next-line-marker (point-marker)) |
240 (while (< next-line-marker end-marker) | |
241 (goto-char next-line-marker) | |
274 | 242 (save-excursion |
427 | 243 (forward-line 1) |
244 (set-marker next-line-marker (point))) | |
245 (save-excursion | |
246 (execute-kbd-macro (or macro last-kbd-macro)))) | |
247 (set-marker end-marker nil) | |
248 (set-marker next-line-marker nil)))) | |
273 | 249 |
5307
069c54e77fd1
Don't repeat at load time any bindings that are autoloaded.
Richard M. Stallman <rms@gnu.org>
parents:
4331
diff
changeset
|
250 ;;;###autoload (define-key ctl-x-map "q" 'kbd-macro-query) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
427
diff
changeset
|
251 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
427
diff
changeset
|
252 ;;; macros.el ends here |