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