Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / macros.el
CommitLineData
55535639 1;;; macros.el --- non-primitive commands for keyboard macros
6594deb0 2
c90f2757 3;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1995, 2001, 2002, 2003,
409cc4a3 4;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
a2535589 5
9750e079 6;; Maintainer: FSF
e9571d2a 7;; Keywords: abbrev
9750e079 8
a2535589
JA
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
a2535589 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
a2535589
JA
15
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.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a2535589 23
e41b2db1
ER
24;;; Commentary:
25
26;; Extension commands for keyboard macros. These permit you to assign
27;; a name to the last-defined keyboard macro, expand and insert the
28;; lisp corresponding to a macro, query the user from within a macro,
29;; or apply a macro to each line in the reason.
30
e5167999 31;;; Code:
a2535589 32
7229064d 33;;;###autoload
a2535589
JA
34(defun name-last-kbd-macro (symbol)
35 "Assign a name to the last keyboard macro defined.
ac5b56bc 36Argument SYMBOL is the name to define.
a2535589 37The symbol's function definition becomes the keyboard macro string.
540671f3 38Such a \"function\" cannot be called from Lisp, but it is a valid editor command."
a2535589
JA
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)))
4dc7458e 44 (not (vectorp (symbol-function symbol)))
55535639 45 (error "Function %s is already defined and not a keyboard macro"
a2535589 46 symbol))
a3fc4dee
RS
47 (if (string-equal symbol "")
48 (error "No command name given"))
a2535589
JA
49 (fset symbol last-kbd-macro))
50
7229064d 51;;;###autoload
a2535589
JA
52(defun insert-kbd-macro (macroname &optional keys)
53 "Insert in buffer the definition of kbd macro NAME, as Lisp code.
540671f3 54Optional second arg KEYS means also record the keys it is on
b4b3b736 55\(this is the prefix argument, when calling interactively).
a2535589 56
540671f3
RS
57This Lisp code will, when executed, define the kbd macro with the same
58definition it has now. If you say to record the keys, the Lisp code
59will also rebind those keys to the macro. Only global key bindings
60are recorded since executing this Lisp code always makes global
61bindings.
a2535589 62
b4b3b736 63To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
a2535589 64use this command, and then save the file."
5edd7c33
KS
65 (interactive (list (intern (completing-read "Insert kbd macro (name): "
66 obarray
4d79b874
EZ
67 (lambda (elt)
68 (and (fboundp elt)
69 (or (stringp (symbol-function elt))
5edd7c33
KS
70 (vectorp (symbol-function elt))
71 (get elt 'kmacro))))
4d79b874
EZ
72 t))
73 current-prefix-arg))
45ca32a6
RS
74 (let (definition)
75 (if (string= (symbol-name macroname) "")
76 (progn
77 (setq macroname 'last-kbd-macro definition last-kbd-macro)
78 (insert "(setq "))
79 (setq definition (symbol-function macroname))
80 (insert "(fset '"))
81 (prin1 macroname (current-buffer))
82 (insert "\n ")
157d78ec
KH
83 (if (stringp definition)
84 (let ((beg (point)) end)
85 (prin1 definition (current-buffer))
86 (setq end (point-marker))
87 (goto-char beg)
f0653de7
RS
88 (while (< (point) end)
89 (let ((char (following-char)))
90 (cond ((= char 0)
91 (delete-region (point) (1+ (point)))
92 (insert "\\C-@"))
93 ((< char 27)
94 (delete-region (point) (1+ (point)))
95 (insert "\\C-" (+ 96 char)))
96 ((= char ?\C-\\)
97 (delete-region (point) (1+ (point)))
98 (insert "\\C-\\\\"))
99 ((< char 32)
100 (delete-region (point) (1+ (point)))
101 (insert "\\C-" (+ 64 char)))
102 ((< char 127)
103 (forward-char 1))
104 ((= char 127)
105 (delete-region (point) (1+ (point)))
106 (insert "\\C-?"))
107 ((= char 128)
108 (delete-region (point) (1+ (point)))
109 (insert "\\M-\\C-@"))
110 ((= char (aref "\M-\C-\\" 0))
111 (delete-region (point) (1+ (point)))
112 (insert "\\M-\\C-\\\\"))
113 ((< char 155)
114 (delete-region (point) (1+ (point)))
115 (insert "\\M-\\C-" (- char 32)))
116 ((< char 160)
117 (delete-region (point) (1+ (point)))
118 (insert "\\M-\\C-" (- char 64)))
119 ((= char (aref "\M-\\" 0))
120 (delete-region (point) (1+ (point)))
121 (insert "\\M-\\\\"))
122 ((< char 255)
123 (delete-region (point) (1+ (point)))
124 (insert "\\M-" (- char 128)))
125 ((= char 255)
126 (delete-region (point) (1+ (point)))
157d78ec
KH
127 (insert "\\M-\\C-?"))))))
128 (if (vectorp definition)
07d1e73a 129 (let ((len (length definition)) (i 0) char mods)
157d78ec 130 (while (< i len)
0c655b90 131 (insert (if (zerop i) ?\[ ?\s))
157d78ec
KH
132 (setq char (aref definition i)
133 i (1+ i))
07d1e73a 134 (cond ((not (numberp char))
157d78ec 135 (prin1 char (current-buffer)))
07d1e73a
RS
136 (t
137 (insert "?")
138 (setq mods (event-modifiers char)
139 char (event-basic-type char))
140 (while mods
141 (cond ((eq (car mods) 'control)
142 (insert "\\C-"))
143 ((eq (car mods) 'meta)
144 (insert "\\M-"))
145 ((eq (car mods) 'hyper)
146 (insert "\\H-"))
147 ((eq (car mods) 'super)
148 (insert "\\s-"))
149 ((eq (car mods) 'alt)
150 (insert "\\A-"))
151 ((and (eq (car mods) 'shift)
152 (>= char ?a)
153 (<= char ?z))
154 (setq char (upcase char)))
155 ((eq (car mods) 'shift)
156 (insert "\\S-")))
157 (setq mods (cdr mods)))
158 (cond ((= char ?\\)
159 (insert "\\\\"))
5367d2b3 160 ((= char ?\")
2b1c8da0 161 (insert "\\\""))
eac6ee8f
GM
162 ((= char ?\;)
163 (insert "\\;"))
07d1e73a
RS
164 ((= char 127)
165 (insert "\\C-?"))
166 ((< char 127)
167 (insert char))
168 (t (insert "\\" (format "%o" char)))))))
157d78ec
KH
169 (insert ?\]))
170 (prin1 definition (current-buffer))))
45ca32a6
RS
171 (insert ")\n")
172 (if keys
16f63554 173 (let ((keys (where-is-internal macroname '(keymap))))
45ca32a6
RS
174 (while keys
175 (insert "(global-set-key ")
176 (prin1 (car keys) (current-buffer))
177 (insert " '")
178 (prin1 macroname (current-buffer))
179 (insert ")\n")
180 (setq keys (cdr keys)))))))
a2535589 181
7229064d 182;;;###autoload
a2535589
JA
183(defun kbd-macro-query (flag)
184 "Query user during kbd macro execution.
540671f3
RS
185 With prefix argument, enters recursive edit, reading keyboard
186commands even within a kbd macro. You can give different commands
187each time the macro executes.
ba790870
RS
188 Without prefix argument, asks whether to continue running the macro.
189Your options are: \\<query-replace-map>
190\\[act] Finish this iteration normally and continue with the next.
191\\[skip] Skip the rest of this iteration, and start the next.
192\\[exit] Stop the macro entirely right now.
193\\[recenter] Redisplay the screen, then ask again.
194\\[edit] Enter recursive edit; ask again when you exit from that."
a2535589 195 (interactive "P")
efcf38c7 196 (or executing-kbd-macro
a2535589
JA
197 defining-kbd-macro
198 (error "Not defining or executing kbd macro"))
199 (if flag
efcf38c7 200 (let (executing-kbd-macro defining-kbd-macro)
a2535589 201 (recursive-edit))
efcf38c7 202 (if (not executing-kbd-macro)
a2535589 203 nil
af400c00
RS
204 (let ((loop t)
205 (msg (substitute-command-keys
206 "Proceed with macro?\\<query-replace-map>\
8693344e 207 (\\[act], \\[skip], \\[exit], \\[recenter], \\[edit]) ")))
a2535589 208 (while loop
efcf38c7 209 (let ((key (let ((executing-kbd-macro nil)
af400c00 210 (defining-kbd-macro nil))
8700ec61 211 (message "%s" msg)
af400c00
RS
212 (read-event)))
213 def)
214 (setq key (vector key))
215 (setq def (lookup-key query-replace-map key))
216 (cond ((eq def 'act)
a2535589 217 (setq loop nil))
af400c00 218 ((eq def 'skip)
a2535589 219 (setq loop nil)
efcf38c7 220 (setq executing-kbd-macro ""))
af400c00 221 ((eq def 'exit)
a2535589 222 (setq loop nil)
efcf38c7 223 (setq executing-kbd-macro t))
af400c00 224 ((eq def 'recenter)
a2535589 225 (recenter nil))
af400c00 226 ((eq def 'edit)
efcf38c7 227 (let (executing-kbd-macro defining-kbd-macro)
af400c00
RS
228 (recursive-edit)))
229 ((eq def 'quit)
230 (setq quit-flag t))
231 (t
232 (or (eq def 'help)
233 (ding))
234 (with-output-to-temp-buffer "*Help*"
235 (princ
236 (substitute-command-keys
eb8c3be9 237 "Specify how to proceed with keyboard macro execution.
af400c00
RS
238Possibilities: \\<query-replace-map>
239\\[act] Finish this iteration normally and continue with the next.
240\\[skip] Skip the rest of this iteration, and start the next.
241\\[exit] Stop the macro entirely right now.
242\\[recenter] Redisplay the screen, then ask again.
6ec1c571
KH
243\\[edit] Enter recursive edit; ask again when you exit from that."))
244 (save-excursion
245 (set-buffer standard-output)
246 (help-mode)))))))))))
7229064d 247
63c86e17
JB
248;;;###autoload
249(defun apply-macro-to-region-lines (top bottom &optional macro)
2b1c8da0
LT
250 "Apply last keyboard macro to all lines in the region.
251For each line that begins in the region, move to the beginning of
252the line, and run the last keyboard macro.
63c86e17
JB
253
254When called from lisp, this function takes two arguments TOP and
255BOTTOM, describing the current region. TOP must be before BOTTOM.
256The optional third argument MACRO specifies a keyboard macro to
257execute.
258
259This is useful for quoting or unquoting included text, adding and
260removing comments, or producing tables where the entries are regular.
261
262For example, in Usenet articles, sections of text quoted from another
263author are indented, or have each line start with `>'. To quote a
264section of text, define a keyboard macro which inserts `>', put point
265and mark at opposite ends of the quoted section, and use
266`\\[apply-macro-to-region-lines]' to mark the entire section.
267
268Suppose you wanted to build a keyword table in C where each entry
269looked like this:
270
f1180544 271 { \"foo\", foo_data, foo_function },
63c86e17
JB
272 { \"bar\", bar_data, bar_function },
273 { \"baz\", baz_data, baz_function },
274
275You could enter the names in this format:
276
277 foo
278 bar
279 baz
280
281and write a macro to massage a word into a table entry:
282
283 \\C-x (
284 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
285 \\C-x )
286
287and then select the region of un-tablified names and use
2b1c8da0 288`\\[apply-macro-to-region-lines]' to build the table from the names."
63c86e17 289 (interactive "r")
bcc78bc0
JB
290 (or macro
291 (progn
292 (if (null last-kbd-macro)
55535639 293 (error "No keyboard macro has been defined"))
bcc78bc0 294 (setq macro last-kbd-macro)))
63c86e17 295 (save-excursion
2b1c8da0 296 (let ((end-marker (copy-marker bottom))
5277487d 297 next-line-marker)
63c86e17
JB
298 (goto-char top)
299 (if (not (bolp))
300 (forward-line 1))
5277487d
JB
301 (setq next-line-marker (point-marker))
302 (while (< next-line-marker end-marker)
303 (goto-char next-line-marker)
3d64136f 304 (save-excursion
5277487d
JB
305 (forward-line 1)
306 (set-marker next-line-marker (point)))
307 (save-excursion
f732f824
KS
308 (let ((mark-active nil))
309 (execute-kbd-macro (or macro last-kbd-macro)))))
5277487d
JB
310 (set-marker end-marker nil)
311 (set-marker next-line-marker nil))))
63c86e17 312
5f5d794a 313;;;###autoload (define-key ctl-x-map "q" 'kbd-macro-query)
6594deb0 314
896546cd
RS
315(provide 'macros)
316
cbee283d 317;; arch-tag: 346ed1a5-1220-4bc8-b533-961ee704361f
6594deb0 318;;; macros.el ends here