Mercurial > emacs
annotate lisp/macros.el @ 244:d6439d1d5d02
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 22 Apr 1991 23:55:24 +0000 |
parents | 8977ce293397 |
children | 7e4c7ef44243 |
rev | line source |
---|---|
36 | 1 ;; Non-primitive commands for keyboard macros. |
2 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. | |
3 | |
4 ;; This file is part of GNU Emacs. | |
5 | |
6 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
7 ;; it under the terms of the GNU General Public License as published by | |
8 ;; the Free Software Foundation; either version 1, or (at your option) | |
9 ;; any later version. | |
10 | |
11 ;; GNU Emacs is distributed in the hope that it will be useful, | |
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 ;; GNU General Public License for more details. | |
15 | |
16 ;; You should have received a copy of the GNU General Public License | |
17 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
19 | |
20 | |
21 (defun name-last-kbd-macro (symbol) | |
22 "Assign a name to the last keyboard macro defined. | |
216 | 23 Argument SYMBOL is the name to define. |
36 | 24 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
|
25 Such a \"function\" cannot be called from Lisp, but it is a valid editor command." |
36 | 26 (interactive "SName for last kbd macro: ") |
27 (or last-kbd-macro | |
28 (error "No keyboard macro defined")) | |
29 (and (fboundp symbol) | |
30 (not (stringp (symbol-function symbol))) | |
31 (error "Function %s is already defined and not a keyboard macro." | |
32 symbol)) | |
33 (fset symbol last-kbd-macro)) | |
34 | |
35 (defun insert-kbd-macro (macroname &optional keys) | |
36 "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
|
37 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
|
38 (this is the prefix argument, when calling interactively). |
36 | 39 |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
40 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
|
41 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
|
42 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
|
43 are recorded since executing this Lisp code always makes global |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
44 bindings. |
36 | 45 |
46 To save a kbd macro, visit a file of Lisp code such as your ~/.emacs, | |
47 use this command, and then save the file." | |
48 (interactive "CInsert kbd macro (name): \nP") | |
49 (insert "(fset '") | |
50 (prin1 macroname (current-buffer)) | |
51 (insert "\n ") | |
52 (prin1 (symbol-function macroname) (current-buffer)) | |
53 (insert ")\n") | |
54 (if keys | |
55 (let ((keys (where-is-internal macroname nil))) | |
56 (while keys | |
57 (insert "(global-set-key ") | |
58 (prin1 (car keys) (current-buffer)) | |
59 (insert " '") | |
60 (prin1 macroname (current-buffer)) | |
61 (insert ")\n") | |
62 (setq keys (cdr keys)))))) | |
63 | |
64 (defun kbd-macro-query (flag) | |
65 "Query user during kbd macro execution. | |
217
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
66 With prefix argument, enters recursive edit, reading keyboard |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
67 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
|
68 each time the macro executes. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
69 Without prefix argument, reads a character. Your options are: |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
70 Space -- execute the rest of the macro. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
71 DEL -- skip the rest of the macro; start next repetition. |
8977ce293397
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
216
diff
changeset
|
72 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
|
73 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
|
74 C-l -- redisplay screen and ask again." |
36 | 75 (interactive "P") |
76 (or executing-macro | |
77 defining-kbd-macro | |
78 (error "Not defining or executing kbd macro")) | |
79 (if flag | |
80 (let (executing-macro defining-kbd-macro) | |
81 (recursive-edit)) | |
82 (if (not executing-macro) | |
83 nil | |
84 (let ((loop t)) | |
85 (while loop | |
86 (let ((char (let ((executing-macro nil) | |
87 (defining-kbd-macro nil)) | |
88 (message "Proceed with macro? (Space, DEL, C-d, C-r or C-l) ") | |
89 (read-char)))) | |
90 (cond ((= char ? ) | |
91 (setq loop nil)) | |
92 ((= char ?\177) | |
93 (setq loop nil) | |
94 (setq executing-macro "")) | |
95 ((= char ?\C-d) | |
96 (setq loop nil) | |
97 (setq executing-macro t)) | |
98 ((= char ?\C-l) | |
99 (recenter nil)) | |
100 ((= char ?\C-r) | |
101 (let (executing-macro defining-kbd-macro) | |
102 (recursive-edit)))))))))) |