Mercurial > emacs
annotate lisp/macros.el @ 807:4f28bd14272c
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Thu, 16 Jul 1992 21:47:34 +0000 |
parents | 505130d1ddf8 |
children | 213978acbc1e |
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 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
3 ;; Maintainer: FSF |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
4 ;; Last-Modified: 05 Nov 1991 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 |
36 | 6 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
24 ;;; Code: |
36 | 25 |
256 | 26 ;;;###autoload |
36 | 27 (defun name-last-kbd-macro (symbol) |
28 "Assign a name to the last keyboard macro defined. | |
216 | 29 Argument SYMBOL is the name to define. |
36 | 30 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
|
31 Such a \"function\" cannot be called from Lisp, but it is a valid editor command." |
36 | 32 (interactive "SName for last kbd macro: ") |
33 (or last-kbd-macro | |
34 (error "No keyboard macro defined")) | |
35 (and (fboundp symbol) | |
36 (not (stringp (symbol-function symbol))) | |
37 (error "Function %s is already defined and not a keyboard macro." | |
38 symbol)) | |
39 (fset symbol last-kbd-macro)) | |
40 | |
256 | 41 ;;;###autoload |
36 | 42 (defun insert-kbd-macro (macroname &optional keys) |
43 "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
|
44 Optional second arg KEYS means also record the keys it is on |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
45 (this is the prefix argument, when calling interactively). |
36 | 46 |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
47 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
|
48 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
|
49 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
|
50 are recorded since executing this Lisp code always makes global |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
51 bindings. |
36 | 52 |
53 To save a kbd macro, visit a file of Lisp code such as your ~/.emacs, | |
54 use this command, and then save the file." | |
55 (interactive "CInsert kbd macro (name): \nP") | |
56 (insert "(fset '") | |
57 (prin1 macroname (current-buffer)) | |
58 (insert "\n ") | |
59 (prin1 (symbol-function macroname) (current-buffer)) | |
60 (insert ")\n") | |
61 (if keys | |
62 (let ((keys (where-is-internal macroname nil))) | |
63 (while keys | |
64 (insert "(global-set-key ") | |
65 (prin1 (car keys) (current-buffer)) | |
66 (insert " '") | |
67 (prin1 macroname (current-buffer)) | |
68 (insert ")\n") | |
69 (setq keys (cdr keys)))))) | |
70 | |
256 | 71 ;;;###autoload |
36 | 72 (defun kbd-macro-query (flag) |
73 "Query user during kbd macro execution. | |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
74 With prefix argument, enters recursive edit, reading keyboard |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
75 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
|
76 each time the macro executes. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
77 Without prefix argument, reads a character. Your options are: |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
78 Space -- execute the rest of the macro. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
79 DEL -- skip the rest of the macro; start next repetition. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
80 C-d -- skip rest of the macro and don't repeat it any more. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
81 C-r -- enter a recursive edit, then on exit ask again for a character |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
82 C-l -- redisplay screen and ask again." |
36 | 83 (interactive "P") |
84 (or executing-macro | |
85 defining-kbd-macro | |
86 (error "Not defining or executing kbd macro")) | |
87 (if flag | |
88 (let (executing-macro defining-kbd-macro) | |
89 (recursive-edit)) | |
90 (if (not executing-macro) | |
91 nil | |
92 (let ((loop t)) | |
93 (while loop | |
94 (let ((char (let ((executing-macro nil) | |
95 (defining-kbd-macro nil)) | |
96 (message "Proceed with macro? (Space, DEL, C-d, C-r or C-l) ") | |
97 (read-char)))) | |
98 (cond ((= char ? ) | |
99 (setq loop nil)) | |
100 ((= char ?\177) | |
101 (setq loop nil) | |
102 (setq executing-macro "")) | |
103 ((= char ?\C-d) | |
104 (setq loop nil) | |
105 (setq executing-macro t)) | |
106 ((= char ?\C-l) | |
107 (recenter nil)) | |
108 ((= char ?\C-r) | |
109 (let (executing-macro defining-kbd-macro) | |
110 (recursive-edit)))))))))) | |
256 | 111 |
268 | 112 ;;;###autoload |
273 | 113 (defun apply-macro-to-region-lines (top bottom &optional macro) |
391 | 114 "For each complete line between point and mark, move to the beginning |
115 of the line, and run the last keyboard macro. | |
273 | 116 |
117 When called from lisp, this function takes two arguments TOP and | |
118 BOTTOM, describing the current region. TOP must be before BOTTOM. | |
119 The optional third argument MACRO specifies a keyboard macro to | |
120 execute. | |
121 | |
122 This is useful for quoting or unquoting included text, adding and | |
123 removing comments, or producing tables where the entries are regular. | |
124 | |
125 For example, in Usenet articles, sections of text quoted from another | |
126 author are indented, or have each line start with `>'. To quote a | |
127 section of text, define a keyboard macro which inserts `>', put point | |
128 and mark at opposite ends of the quoted section, and use | |
129 `\\[apply-macro-to-region-lines]' to mark the entire section. | |
130 | |
131 Suppose you wanted to build a keyword table in C where each entry | |
132 looked like this: | |
133 | |
134 { \"foo\", foo_data, foo_function }, | |
135 { \"bar\", bar_data, bar_function }, | |
136 { \"baz\", baz_data, baz_function }, | |
137 | |
138 You could enter the names in this format: | |
139 | |
140 foo | |
141 bar | |
142 baz | |
143 | |
144 and write a macro to massage a word into a table entry: | |
145 | |
146 \\C-x ( | |
147 \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function }, | |
148 \\C-x ) | |
149 | |
150 and then select the region of un-tablified names and use | |
151 `\\[apply-macro-to-region-lines]' to build the table from the names. | |
152 " | |
153 (interactive "r") | |
391 | 154 (or macro |
155 (progn | |
156 (if (null last-kbd-macro) | |
157 (error "No keyboard macro has been defined.")) | |
158 (setq macro last-kbd-macro))) | |
273 | 159 (save-excursion |
160 (let ((end-marker (progn | |
161 (goto-char bottom) | |
162 (beginning-of-line) | |
427 | 163 (point-marker))) |
164 next-line-marker) | |
273 | 165 (goto-char top) |
166 (if (not (bolp)) | |
167 (forward-line 1)) | |
427 | 168 (setq next-line-marker (point-marker)) |
169 (while (< next-line-marker end-marker) | |
170 (goto-char next-line-marker) | |
274 | 171 (save-excursion |
427 | 172 (forward-line 1) |
173 (set-marker next-line-marker (point))) | |
174 (save-excursion | |
175 (execute-kbd-macro (or macro last-kbd-macro)))) | |
176 (set-marker end-marker nil) | |
177 (set-marker next-line-marker nil)))) | |
273 | 178 |
179 ;;;###autoload | |
268 | 180 (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
|
181 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
427
diff
changeset
|
182 ;;; macros.el ends here |