(diff-default-read-only): Change default.
[emacs.git] / lisp / kmacro.el
blob68717653eb869a0a1fb81dad2aeaa0eaf28ee448
1 ;;; kmacro.el --- enhanced keyboard macros
3 ;; Copyright (C) 2002 Free Software Foundation, Inc.
5 ;; Author: Kim F. Storm <storm@cua.dk>
6 ;; Keywords: keyboard convenience
8 ;; This file is part of GNU Emacs.
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
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
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.
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 the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; The kmacro package is an alternative user interface to emacs'
28 ;; keyboard macro functionality. This functionality is normally bound
29 ;; to C-x (, C-x ), and C-x e, but these bindings are too hard to
30 ;; type to be really useful for doing small repeated tasks.
32 ;; With kmacro, two function keys are dedicated to keyboard macros,
33 ;; by default F3 and F4. Personally, I prefer F1 and F2, but those
34 ;; keys already have default bindings.
36 ;; To start defining a keyboard macro, use F3. To end the macro,
37 ;; use F4, and to call the macro also use F4. This makes it very
38 ;; easy to repeat a macro immediately after defining it.
40 ;; You can call the macro repeatedly by pressing F4 multiple times, or
41 ;; you can give a numeric prefix argument specifying the number of
42 ;; times to repeat the macro. Macro execution automatically
43 ;; terminates when point reaches the end of the buffer or if an error
44 ;; is signalled by ringing the bell.
46 ;; When you define a macro with F3/F4, it is automatically added to
47 ;; the head of the "keyboard macro ring", and F4 actually executes the
48 ;; first element of the macro ring.
50 ;; Note: an empty macro is never added to the macro ring.
52 ;; You can execute the second element on the macro ring with C-u F4 or
53 ;; C-x C-k C-l, you can use C-x C-k C-p and C-x C-k C-n to cycle
54 ;; through the macro ring, and you can swap the first and second
55 ;; elements with C-x C-k C-t. To delete the first element in the
56 ;; macro ring, use C-x C-k C-d.
59 ;; You can also use C-x C-k C-s to start a macro, and C-x C-k C-k to
60 ;; end it; then use C-k to execute it immediately, or C-x C-k C-k to
61 ;; execute it later.
63 ;; In general, immediately after using C-x C-k followed by one of C-k,
64 ;; C-l, C-p, or C-n, you can further cycle the macro ring using C-p or
65 ;; C-n, execute the first or second macro using C-k or C-l, delete
66 ;; the head macro with C-d, or edit the current macro with C-e without
67 ;; repeating the C-x C-k prefix.
69 ;; If you enter F3 while defining the macro, the numeric value of
70 ;; `kmacro-counter' is inserted using the `kmacro-counter-format', and
71 ;; `kmacro-counter' is incremented by 1 (or the numeric prefix value
72 ;; of F3).
74 ;; The initial value of `kmacro-counter' is 0, or the numeric prefix
75 ;; value given to F3 when starting the macro.
77 ;; Now, each time you call the macro using F4, the current
78 ;; value of `kmacro-counter' is inserted and incremented, making it
79 ;; easy to insert incremental numbers in the buffer.
81 ;; Example:
83 ;; The following sequence: M-5 F3 x M-2 F3 y F4 F4 F4 F4
84 ;; inserts the following string: x5yx7yx9yx11y
86 ;; A macro can also be called using a mouse click, default S-mouse-3.
87 ;; This calls the macro at the point where you click the mouse.
89 ;; You can edit the last macro using C-x C-k C-e.
91 ;; You can append to the last macro using C-u F3.
93 ;; You can set the macro counter using C-x C-k C-c, add to it using C-x C-k C-a,
94 ;; and you can set the macro counter format with C-x C-k C-f.
96 ;; The following key bindings are performed:
98 ;; Normal While defining macro
99 ;; --------------------------- ------------------------------
100 ;; f3 Define macro Insert current counter value
101 ;; Prefix arg specifies initial and increase counter by prefix
102 ;; counter value (default 0) (default increment: 1)
104 ;; C-u f3 APPENDs to last macro
106 ;; f4 Call last macro End macro
107 ;; Prefix arg specifies number
108 ;; of times to execute macro.
110 ;; C-u f4 Swap last and head of macro ring.
112 ;; S-mouse-3 Set point at click and End macro and execute macro at
113 ;; execute last macro. click.
115 ;;; Code:
117 ;; Customization:
119 (defgroup kmacro nil
120 "Simplified keyboard macro user interface."
121 :group 'keyboard
122 :group 'convenience
123 :link '(emacs-commentary-link :tag "Commentary" "kmacro.el")
124 :link '(emacs-library-link :tag "Lisp File" "kmacro.el"))
126 (defcustom kmacro-call-mouse-event 'S-mouse-3
127 "The mouse event used by kmacro to call a macro.
128 Set to nil if no mouse binding is desired."
129 :type 'symbol
130 :group 'kmacro)
132 (defcustom kmacro-ring-max 8
133 "Maximum number of keyboard macros to save in macro ring."
134 :type 'integer
135 :group 'kmacro)
138 (defcustom kmacro-execute-before-append t
139 "Controls whether appending to a macro starts by executing the macro.
140 If non-nil, using a single \\[universal-argument] prefix executes the macro
141 before appending, while more than one \\[universal-argument] prefix does not
142 execute the macro.
143 Otherwise, a single \\[universal-argument] prefix does not execute the
144 macro, while more than one \\[universal-argument] prefix causes the
145 macro to be executed before appending to it."
146 :type 'boolean
147 :group 'kmacro)
150 (defcustom kmacro-repeat-no-prefix t
151 "Allow repeating certain macro commands without entering the C-x C-k prefix."
152 :type 'boolean
153 :group 'kmacro)
155 (defcustom kmacro-call-repeat-key t
156 "Allow repeating macro call using last key or a specific key."
157 :type '(choice (const :tag "Disabled" nil)
158 (const :tag "Last key" t)
159 (character :tag "Character" :value ?e)
160 (symbol :tag "Key symbol" :value RET))
161 :group 'kmacro)
163 (defcustom kmacro-call-repeat-with-arg nil
164 "Repeat macro call with original arg when non-nil; repeat once if nil."
165 :type 'boolean
166 :group 'kmacro)
168 (defcustom kmacro-step-edit-mini-window-height 0.75
169 "Override `max-mini-window-height' when step edit keyboard macro."
170 :type 'number
171 :group 'kmacro)
173 ;; Keymap
175 (defvar kmacro-keymap
176 (let ((map (make-sparse-keymap)))
177 ;; Start, end, execute macros
178 (define-key map "s" 'kmacro-start-macro)
179 (define-key map "\C-s" 'kmacro-start-macro)
180 (define-key map "\C-k" 'kmacro-end-or-call-macro-repeat)
181 (define-key map "r" 'apply-macro-to-region-lines)
182 (define-key map "q" 'kbd-macro-query) ;; Like C-x q
184 ;; macro ring
185 (define-key map "\C-n" 'kmacro-cycle-ring-next)
186 (define-key map "\C-p" 'kmacro-cycle-ring-previous)
187 (define-key map "\C-v" 'kmacro-view-macro-repeat)
188 (define-key map "\C-d" 'kmacro-delete-ring-head)
189 (define-key map "\C-t" 'kmacro-swap-ring)
190 (define-key map "\C-l" 'kmacro-call-ring-2nd-repeat)
192 ;; macro counter
193 (define-key map "\C-f" 'kmacro-set-format)
194 (define-key map "\C-c" 'kmacro-set-counter)
195 (define-key map "\C-i" 'kmacro-insert-counter)
196 (define-key map "\C-a" 'kmacro-add-counter)
198 ;; macro editing
199 (define-key map "\C-e" 'kmacro-edit-macro-repeat)
200 (define-key map "\r" 'kmacro-edit-macro)
201 (define-key map "e" 'edit-kbd-macro)
202 (define-key map "l" 'kmacro-edit-lossage)
203 (define-key map " " 'kmacro-step-edit-macro)
205 ;; naming and binding
206 (define-key map "b" 'kmacro-bind-to-key)
207 (define-key map "n" 'name-last-kbd-macro)
208 map)
209 "Keymap for keyboard macro commands.")
210 (defalias 'kmacro-keymap kmacro-keymap)
212 ;;; Provide some binding for startup:
213 ;;;###autoload (global-set-key "\C-x(" 'kmacro-start-macro)
214 ;;;###autoload (global-set-key "\C-x)" 'kmacro-end-macro)
215 ;;;###autoload (global-set-key "\C-xe" 'kmacro-end-and-call-macro)
216 ;;;###autoload (global-set-key [f3] 'kmacro-start-macro-or-insert-counter)
217 ;;;###autoload (global-set-key [f4] 'kmacro-end-or-call-macro)
218 ;;;###autoload (global-set-key "\C-x\C-k" 'kmacro-keymap)
219 ;;;###autoload (autoload 'kmacro-keymap "kmacro" "Keymap for keyboard macro commands." t 'keymap)
221 (if kmacro-call-mouse-event
222 (global-set-key (vector kmacro-call-mouse-event) 'kmacro-end-call-mouse))
226 ;;; Keyboard macro counter
228 (defvar kmacro-counter 0
229 "*Current keyboard macro counter.")
231 (defvar kmacro-counter-format "%d"
232 "*Current keyboard macro counter format.")
234 (defvar kmacro-counter-format-start kmacro-counter-format
235 "Macro format at start of macro execution.")
237 (defvar kmacro-counter-value-start kmacro-counter
238 "Macro counter at start of macro execution.")
240 (defvar kmacro-last-counter 0
241 "Last counter inserted by key macro.")
243 (defvar kmacro-initial-counter-value nil
244 "Initial counter value for the next keyboard macro to be defined.")
247 (defun kmacro-insert-counter (arg)
248 "Insert macro counter and increment with ARG or 1 if missing.
249 With \\[universal-argument], insert previous kmacro-counter (but do not modify counter)."
250 (interactive "P")
251 (setq kmacro-initial-counter-value nil)
252 (if (and arg (listp arg))
253 (insert (format kmacro-counter-format kmacro-last-counter))
254 (insert (format kmacro-counter-format kmacro-counter))
255 (kmacro-add-counter (prefix-numeric-value arg))))
258 (defun kmacro-set-format (format)
259 "Set macro counter FORMAT."
260 (interactive "sMacro Counter Format (printf format): ")
261 (setq kmacro-counter-format
262 (if (equal format "") "%d" format))
263 ;; redefine initial macro counter if we are not executing a macro.
264 (if (not (or defining-kbd-macro executing-kbd-macro))
265 (setq kmacro-counter-format-start kmacro-counter-format)))
268 (defun kmacro-display-counter (&optional value)
269 "Display current counter value."
270 (unless value (setq value kmacro-counter))
271 (message "New macro counter value: %s (%d)" (format kmacro-counter-format value) value))
274 (defun kmacro-set-counter (arg)
275 "Set kmacro-counter to ARG or prompt if missing.
276 With \\[universal-argument] prefix, reset counter to its value prior to this iteration of the macro."
277 (interactive "NMacro counter value: ")
278 (setq kmacro-last-counter kmacro-counter
279 kmacro-counter (if (and current-prefix-arg (listp current-prefix-arg))
280 kmacro-counter-value-start
281 arg))
282 ;; setup initial macro counter value if we are not executing a macro.
283 (setq kmacro-initial-counter-value
284 (and (not (or defining-kbd-macro executing-kbd-macro))
285 kmacro-counter))
286 (unless executing-kbd-macro
287 (kmacro-display-counter)))
290 (defun kmacro-add-counter (arg)
291 "Add numeric prefix arg (prompt if missing) to macro counter.
292 With \\[universal-argument], restore previous counter value."
293 (interactive "NAdd to macro counter: ")
294 (setq kmacro-initial-counter-value nil)
295 (let ((last kmacro-last-counter))
296 (setq kmacro-last-counter kmacro-counter
297 kmacro-counter (if (and current-prefix-arg (listp current-prefix-arg))
298 last
299 kmacro-counter (+ kmacro-counter arg))))
300 (unless executing-kbd-macro
301 (kmacro-display-counter)))
304 (defun kmacro-loop-setup-function ()
305 "Function called prior to each iteration of macro."
306 ;; Restore macro counter format to initial format, so it is ok to change
307 ;; counter format in the macro without restoring it.
308 (setq kmacro-counter-format kmacro-counter-format-start)
309 ;; Save initial counter value so we can restore it with C-u kmacro-set-counter.
310 (setq kmacro-counter-value-start kmacro-counter)
311 ;; Return non-nil to continue execution.
315 ;;; Keyboard macro ring
317 (defvar kmacro-ring nil
318 "The keyboard macro ring.
319 Each element is a list (MACRO COUNTER FORMAT). Actually, the head of
320 the macro ring (when defining or executing) is not stored in the ring;
321 instead it is available in the variables `last-kbd-macro', `kmacro-counter',
322 and `kmacro-counter-format'.")
324 ;; Remember what we are currently looking at with kmacro-view-macro.
326 (defvar kmacro-view-last-item nil)
327 (defvar kmacro-view-item-no 0)
330 (defun kmacro-ring-head ()
331 "Return pseudo head element in macro ring."
332 (and last-kbd-macro
333 (list last-kbd-macro kmacro-counter kmacro-counter-format-start)))
336 (defun kmacro-push-ring (&optional elt)
337 "Push ELT or current macro onto `kmacro-ring'."
338 (when (setq elt (or elt (kmacro-ring-head)))
339 (let ((len (length kmacro-ring)))
340 (setq kmacro-ring (cons elt kmacro-ring))
341 (if (>= len kmacro-ring-max)
342 (setcdr (nthcdr len kmacro-ring) nil)))))
345 (defun kmacro-split-ring-element (elt)
346 (setq last-kbd-macro (car elt)
347 kmacro-counter (nth 1 elt)
348 kmacro-counter-format-start (nth 2 elt)))
351 (defun kmacro-pop-ring1 (&optional raw)
352 "Pop head element off macro ring (no check).
353 Non-nil arg RAW means just return raw first element."
354 (prog1 (car kmacro-ring)
355 (unless raw
356 (kmacro-split-ring-element (car kmacro-ring)))
357 (setq kmacro-ring (cdr kmacro-ring))))
360 (defun kmacro-pop-ring (&optional raw)
361 "Pop head element off macro ring.
362 Non-nil arg RAW means just return raw first element."
363 (unless (kmacro-ring-empty-p)
364 (kmacro-pop-ring1 raw)))
367 (defun kmacro-ring-length ()
368 "Return length of macro ring, including pseudo head."
369 (+ (if last-kbd-macro 1 0) (length kmacro-ring)))
372 (defun kmacro-ring-empty-p (&optional none)
373 "Tell user and return t if `last-kbd-macro' is nil or `kmacro-ring' is empty.
374 Check only `last-kbd-macro' if optional arg NONE is non-nil."
375 (while (and (null last-kbd-macro) kmacro-ring)
376 (kmacro-pop-ring1))
377 (cond
378 ((null last-kbd-macro)
379 (message "No keyboard macro defined.")
381 ((and (null none) (null kmacro-ring))
382 (message "Only one keyboard macro defined.")
384 (t nil)))
387 (defun kmacro-display (macro &optional trunc descr empty)
388 "Display a keyboard MACRO.
389 Optional arg TRUNC non-nil specifies to limit width of macro to 60 chars.
390 Optional arg DESCR is descriptive text for macro; default is \"Macro:\".
391 Optional arg EMPTY is message to print if no macros are defined."
392 (if macro
393 (let* ((x 60)
394 (m (format-kbd-macro macro))
395 (l (length m))
396 (z (and nil trunc (> l x))))
397 (message (format "%s: %s%s" (or descr "Macro")
398 (if z (substring m 0 (1- x)) m) (if z "..." ""))))
399 (message (or empty "No keyboard macros defined"))))
402 (defun kmacro-repeat-on-last-key (keys)
403 "Process kmacro commands keys immidiately after cycling the ring."
404 (setq keys (vconcat keys))
405 (let ((n (1- (length keys)))
406 cmd done repeat)
407 (while (and last-kbd-macro
408 (not done)
409 (aset keys n (read-event))
410 (setq cmd (key-binding keys t))
411 (setq repeat (get cmd 'kmacro-repeat)))
412 (clear-this-command-keys t)
413 (cond
414 ((eq repeat 'ring)
415 (if kmacro-ring
416 (let ((kmacro-repeat-no-prefix nil))
417 (funcall cmd nil))
418 (kmacro-display last-kbd-macro t)))
419 ((eq repeat 'head)
420 (let ((kmacro-repeat-no-prefix nil))
421 (funcall cmd nil)))
422 ((eq repeat 'stop)
423 (funcall cmd nil)
424 (setq done t)))
425 (setq last-input-event nil)))
426 (when last-input-event
427 (clear-this-command-keys t)
428 (setq unread-command-events (list last-input-event))))
431 (defun kmacro-get-repeat-prefix ()
432 (let (keys)
433 (and kmacro-repeat-no-prefix
434 (setq keys (this-single-command-keys))
435 (> (length keys) 1)
436 keys)))
439 (defun kmacro-exec-ring-item (item arg)
440 "Execute item ITEM from the macro ring."
441 ;; Use counter and format specific to the macro on the ring!
442 (let ((kmacro-counter (nth 1 item))
443 (kmacro-counter-format-start (nth 2 item)))
444 (execute-kbd-macro (car item) arg #'kmacro-loop-setup-function)
445 (setcar (cdr item) kmacro-counter)))
448 (defun kmacro-call-ring-2nd (arg)
449 "Execute second keyboard macro at in macro ring."
450 (interactive "P")
451 (unless (kmacro-ring-empty-p)
452 (kmacro-exec-ring-item (car kmacro-ring) arg)))
455 (defun kmacro-call-ring-2nd-repeat (arg)
456 "Execute second keyboard macro at in macro ring.
457 This is like `kmacro-call-ring-2nd', but allows repeating macro commands
458 without repeating the prefix."
459 (interactive "P")
460 (let ((keys (kmacro-get-repeat-prefix)))
461 (kmacro-call-ring-2nd arg)
462 (if (and kmacro-ring keys)
463 (kmacro-repeat-on-last-key keys))))
465 (put 'kmacro-call-ring-2nd-repeat 'kmacro-repeat 'head)
468 (defun kmacro-view-ring-2nd ()
469 "Display the current head of the keyboard macro ring."
470 (interactive)
471 (unless (kmacro-ring-empty-p)
472 (kmacro-display (car (car kmacro-ring)) "2nd macro")))
475 (defun kmacro-cycle-ring-next (&optional arg)
476 "Move to next keyboard macro in keyboard macro ring.
477 Displays the selected macro in the echo area."
478 (interactive)
479 (unless (kmacro-ring-empty-p)
480 (kmacro-push-ring)
481 (let* ((keys (kmacro-get-repeat-prefix))
482 (len (length kmacro-ring))
483 (tail (nthcdr (- len 2) kmacro-ring))
484 (elt (car (cdr tail))))
485 (setcdr tail nil)
486 (kmacro-split-ring-element elt)
487 (kmacro-display last-kbd-macro t)
488 (if keys
489 (kmacro-repeat-on-last-key keys)))))
491 (put 'kmacro-cycle-ring-next 'kmacro-repeat 'ring)
494 (defun kmacro-cycle-ring-previous (&optional arg)
495 "Move to previous keyboard macro in keyboard macro ring.
496 Displays the selected macro in the echo area."
497 (interactive)
498 (unless (kmacro-ring-empty-p)
499 (let ((keys (kmacro-get-repeat-prefix))
500 (cur (kmacro-ring-head)))
501 (kmacro-pop-ring1)
502 (if kmacro-ring
503 (nconc kmacro-ring (list cur))
504 (setq kmacro-ring (list cur)))
505 (kmacro-display last-kbd-macro t)
506 (if keys
507 (kmacro-repeat-on-last-key keys)))))
509 (put 'kmacro-cycle-ring-previous 'kmacro-repeat 'ring)
512 (defun kmacro-swap-ring ()
513 "Swap first two elements on keyboard macro ring."
514 (interactive)
515 (unless (kmacro-ring-empty-p)
516 (let ((cur (kmacro-ring-head)))
517 (kmacro-pop-ring1)
518 (kmacro-push-ring cur))
519 (kmacro-display last-kbd-macro t)))
522 (defun kmacro-delete-ring-head (&optional arg)
523 "Delete current macro from keyboard macro ring."
524 (interactive)
525 (unless (kmacro-ring-empty-p t)
526 (if (null kmacro-ring)
527 (setq last-kbd-macro nil)
528 (kmacro-pop-ring))
529 (kmacro-display last-kbd-macro t nil "Keyboard macro ring is now empty.")))
531 (put 'kmacro-delete-ring-head 'kmacro-repeat 'head)
533 ;;; Traditional bindings:
536 ;;;###autoload
537 (defun kmacro-start-macro (arg)
538 "Record subsequent keyboard input, defining a keyboard macro.
539 The commands are recorded even as they are executed.
540 Use \\[kmacro-end-macro] to finish recording and make the macro available.
541 Use \\[kmacro-end-and-call-macro] to execute the macro.
542 Use \\[name-last-kbd-macro] to give it a permanent name.
543 Non-nil arg (prefix arg) means append to last macro defined;
545 With \\[universal-argument] prefix, append to last keyboard macro
546 defined. Depending on `kmacro-execute-before-append', this may begin
547 by re-executing the last macro as if you typed it again.
549 Otherwise, it sets `kmacro-counter' to ARG or 0 if missing before
550 defining the macro.
552 Use \\[kmacro-insert-counter] to insert (and increment) the macro counter.
553 The counter value can be set or modified via \\[kmacro-set-counter] and \\[kmacro-add-counter].
554 The format of the counter can be modified via \\[kmacro-set-format]."
555 (interactive "P")
556 (if (or defining-kbd-macro executing-kbd-macro)
557 (message "Already defining keyboard macro.")
558 (let ((append (and arg (listp arg))))
559 (unless append
560 (if last-kbd-macro
561 (let ((len (length kmacro-ring)))
562 (setq kmacro-ring
563 (cons
564 (list last-kbd-macro kmacro-counter kmacro-counter-format-start)
565 kmacro-ring))
566 (if (>= len kmacro-ring-max)
567 (setcdr (nthcdr len kmacro-ring) nil))))
568 (setq kmacro-counter (or (if arg (prefix-numeric-value arg))
569 kmacro-initial-counter-value
571 kmacro-initial-counter-value nil
572 kmacro-counter-value-start kmacro-counter
573 kmacro-last-counter kmacro-counter
574 kmacro-counter-format-start kmacro-counter-format))
576 (start-kbd-macro append
577 (and append
578 (if kmacro-execute-before-append
579 (> (car arg) 4)
580 (= (car arg) 4)))))))
583 ;;;###autoload
584 (defun kmacro-end-macro (arg)
585 "Finish defining a keyboard macro.
586 The definition was started by \\[kmacro-start-macro].
587 The macro is now available for use via \\[kmacro-call-macro],
588 or it can be given a name with \\[name-last-kbd-macro] and then invoked
589 under that name.
591 With numeric arg, repeat macro now that many times,
592 counting the definition just completed as the first repetition.
593 An argument of zero means repeat until error."
594 (interactive "P")
595 (end-kbd-macro arg #'kmacro-loop-setup-function)
596 (when (and last-kbd-macro (= (length last-kbd-macro) 0))
597 (message "Ignore empty macro")
598 (kmacro-pop-ring)))
601 ;;;###autoload
602 (defun kmacro-call-macro (arg &optional no-repeat end-macro)
603 "Call the last keyboard macro that you defined with \\[kmacro-start-macro].
604 A prefix argument serves as a repeat count. Zero means repeat until error.
606 When you call the macro, you can call the macro again by repeating
607 just the last key in the key sequence that you used to call this
608 command. See `kmacro-call-repeat-key' and `kmacro-call-repeat-with-arg'
609 for details on how to adjust or disable this behaviour.
611 To make a macro permanent so you can call it even after defining
612 others, use M-x name-last-kbd-macro."
613 (interactive "p")
614 (let ((repeat-key (and (null no-repeat)
615 (> (length (this-single-command-keys)) 1)
616 last-input-event))
617 repeat-key-str)
618 (if end-macro
619 (kmacro-end-macro arg)
620 (call-last-kbd-macro arg #'kmacro-loop-setup-function))
621 (when (consp arg)
622 (setq arg (car arg)))
623 (when (and (or (null arg) (> arg 0))
624 (setq repeat-key
625 (if (eq kmacro-call-repeat-key t)
626 repeat-key
627 kmacro-call-repeat-key)))
628 (setq repeat-key-str (format-kbd-macro (vector repeat-key) nil))
629 (while repeat-key
630 (message "(Type %s to repeat macro%s)"
631 repeat-key-str
632 (if (and kmacro-call-repeat-with-arg
633 arg (> arg 1))
634 (format " %d times" arg) ""))
635 (if (equal repeat-key (read-event))
636 (progn
637 (clear-this-command-keys t)
638 (call-last-kbd-macro (and kmacro-call-repeat-with-arg arg)
639 #'kmacro-loop-setup-function)
640 (setq last-input-event nil))
641 (setq repeat-key nil)))
642 (when last-input-event
643 (clear-this-command-keys t)
644 (setq unread-command-events (list last-input-event))))))
647 ;;; Combined function key bindings:
649 ;;;###autoload
650 (defun kmacro-start-macro-or-insert-counter (arg)
651 "Record subsequent keyboard input, defining a keyboard macro.
652 The commands are recorded even as they are executed.
654 Sets the `kmacro-counter' to ARG (or 0 if no prefix arg) before defining the
655 macro.
657 With \\[universal-argument], appends to current keyboard macro (keeping
658 the current value of `kmacro-counter').
660 When defining/executing macro, inserts macro counter and increments
661 the counter with ARG or 1 if missing. With \\[universal-argument],
662 inserts previous kmacro-counter (but do not modify counter).
664 The macro counter can be modified via \\[kmacro-set-counter] and \\[kmacro-add-counter].
665 The format of the counter can be modified via \\[kmacro-set-format]."
666 (interactive "P")
667 (if (or defining-kbd-macro executing-kbd-macro)
668 (kmacro-insert-counter arg)
669 (kmacro-start-macro arg)))
672 ;;;###autoload
673 (defun kmacro-end-or-call-macro (arg &optional no-repeat)
674 "End kbd macro if currently being defined; else call last kbd macro.
675 With numeric prefix ARG, repeat macro that many times.
676 With \\[universal-argument], call second macro in macro ring."
677 (interactive "P")
678 (cond
679 (defining-kbd-macro
680 (if kmacro-call-repeat-key
681 (kmacro-call-macro arg no-repeat t)
682 (kmacro-end-macro arg)))
683 ((and (eq this-command 'kmacro-view-macro) ;; We are in repeat mode!
684 kmacro-view-last-item)
685 (kmacro-exec-ring-item (car kmacro-view-last-item) arg))
686 ((and arg (listp arg))
687 (kmacro-call-ring-2nd 1))
689 (kmacro-call-macro arg no-repeat))))
692 (defun kmacro-end-or-call-macro-repeat (arg)
693 "As `kmacro-end-or-call-macro' but allows repeat without repeating prefix."
694 (interactive "P")
695 (let ((keys (kmacro-get-repeat-prefix)))
696 (kmacro-end-or-call-macro arg t)
697 (if keys
698 (kmacro-repeat-on-last-key keys))))
700 (put 'kmacro-end-or-call-macro-repeat 'kmacro-repeat 'head)
703 ;;;###autoload
704 (defun kmacro-end-and-call-macro (arg &optional no-repeat)
705 "Call last keyboard macro, ending it first if currently being defined.
706 With numeric prefix ARG, repeat macro that many times.
707 Zero argument means repeat until there is an error.
709 To give a macro a permanent name, so you can call it
710 even after defining other macros, use \\[name-last-kbd-macro]."
711 (interactive "P")
712 (if defining-kbd-macro
713 (kmacro-end-macro nil))
714 (kmacro-call-macro arg no-repeat))
717 ;;;###autoload
718 (defun kmacro-end-call-mouse (event)
719 "Move point to the position clicked with the mouse and call last kbd macro.
720 If kbd macro currently being defined end it before activating it."
721 (interactive "e")
722 (when defining-kbd-macro
723 (end-kbd-macro))
724 (mouse-set-point event)
725 (kmacro-call-macro nil t))
728 ;;; Misc. commands
730 ;; An idea for macro bindings:
731 ;; Create a separate keymap installed as a minor-mode keymap (e.g. in
732 ;; the emulation-mode-map-alists) in which macro bindings are made
733 ;; independent of any other bindings. When first binding is made,
734 ;; the kemap is created, installed, and enabled. Key seq. C-x C-k +
735 ;; can then be used to toggle the use of this keymap on and off.
736 ;; This means that it would be safe(r) to bind ordinary keys like
737 ;; letters and digits, provided that we inhibit the keymap while
738 ;; executing the macro later on (but that's controversial...)
740 (defun kmacro-bind-to-key (arg)
741 "When not defining or executing a macro, offer to bind last macro to a key.
742 The key sequences [C-x C-k 0] through [C-x C-k 9] and [C-x C-k A]
743 through [C-x C-k Z] are reserved for user bindings, and to bind to
744 one of these sequences, just enter the digit or letter, rather than
745 the whole sequence.
747 You can bind to any valid key sequence, but if you try to bind to
748 a key with an existing command binding, you will be asked for
749 confirmation whether to replace that binding. Note that the
750 binding is made in the `global-map' keymap, so the macro binding
751 may be shaded by a local key binding."
752 (interactive "p")
753 (if (or defining-kbd-macro executing-kbd-macro)
754 (if defining-kbd-macro
755 (message "Cannot save macro while defining it."))
756 (unless last-kbd-macro
757 (error "No keyboard macro defined"))
758 (let ((key-seq (read-key-sequence "Bind last macro to key: "))
759 ok cmd)
760 (when (= (length key-seq) 1)
761 (let ((ch (aref key-seq 0)))
762 (if (or (and (>= ch ?0) (<= ch ?9))
763 (and (>= ch ?A) (<= ch ?Z)))
764 (setq key-seq (concat "\C-x\C-k" key-seq)
765 ok t))))
766 (when (and (not (equal key-seq "\a"))
767 (or ok
768 (not (setq cmd (key-binding key-seq)))
769 (stringp cmd)
770 (vectorp cmd)
771 (yes-or-no-p (format "%s runs command %S. Bind anyway? "
772 (format-kbd-macro key-seq)
773 cmd))))
774 (define-key global-map key-seq last-kbd-macro)
775 (message "Keyboard macro bound to %s" (format-kbd-macro key-seq))))))
778 (defun kmacro-view-macro (&optional arg)
779 "Display the last keyboard macro.
780 If repeated, it shows previous elements in the macro ring."
781 (interactive)
782 (cond
783 ((or (kmacro-ring-empty-p)
784 (not (eq last-command 'kmacro-view-macro)))
785 (setq kmacro-view-last-item nil))
786 ((null kmacro-view-last-item)
787 (setq kmacro-view-last-item kmacro-ring
788 kmacro-view-item-no 2))
789 ((consp kmacro-view-last-item)
790 (setq kmacro-view-last-item (cdr kmacro-view-last-item)
791 kmacro-view-item-no (1+ kmacro-view-item-no)))
793 (setq kmacro-view-last-item nil)))
794 (setq this-command 'kmacro-view-macro
795 last-command this-command) ;; in case we repeat
796 (kmacro-display (if kmacro-view-last-item
797 (car (car kmacro-view-last-item))
798 last-kbd-macro)
800 (if kmacro-view-last-item
801 (concat (cond ((= kmacro-view-item-no 2) "2nd")
802 ((= kmacro-view-item-no 3) "3nd")
803 (t (format "%dth" kmacro-view-item-no)))
804 " previous macro")
805 "Last macro")))
807 (defun kmacro-view-macro-repeat (&optional arg)
808 "Display the last keyboard macro.
809 If repeated, it shows previous elements in the macro ring.
810 To execute the displayed macro ring item without changing the macro ring,
811 just enter C-k.
812 This is like `kmacro-view-macro', but allows repeating macro commands
813 without repeating the prefix."
814 (interactive)
815 (let ((keys (kmacro-get-repeat-prefix)))
816 (kmacro-view-macro arg)
817 (if (and last-kbd-macro keys)
818 (kmacro-repeat-on-last-key keys))))
820 (put 'kmacro-view-macro-repeat 'kmacro-repeat 'ring)
823 (defun kmacro-edit-macro-repeat (&optional arg)
824 "Edit last keyboard macro."
825 (interactive "P")
826 (edit-kbd-macro "\r" arg))
828 (put 'kmacro-edit-macro-repeat 'kmacro-repeat 'stop)
831 (defun kmacro-edit-macro (&optional arg)
832 "As edit last keyboard macro, but without kmacro-repeat property."
833 (interactive "P")
834 (edit-kbd-macro "\r" arg))
837 (defun kmacro-edit-lossage ()
838 "Edit most recent 100 keystrokes as a keyboard macro."
839 (interactive)
840 (kmacro-push-ring)
841 (edit-kbd-macro "\C-hl"))
844 ;;; Single-step editing of keyboard macros
846 (defvar kmacro-step-edit-active) ;; step-editing active
847 (defvar kmacro-step-edit-new-macro) ;; storage for new macro
848 (defvar kmacro-step-edit-inserting) ;; inserting into macro
849 (defvar kmacro-step-edit-appending) ;; append to end of macro
850 (defvar kmacro-step-edit-replace) ;; replace orig macro when done
851 (defvar kmacro-step-edit-prefix-index) ;; index of first prefix arg key
852 (defvar kmacro-step-edit-key-index) ;; index of current key
853 (defvar kmacro-step-edit-action) ;; automatic action on next pre-command hook
854 (defvar kmacro-step-edit-help) ;; kmacro step edit help enabled
855 (defvar kmacro-step-edit-num-input-keys) ;; to ignore duplicate pre-command hook
857 (defvar kmacro-step-edit-map (make-sparse-keymap)
858 "Keymap that defines the responses to questions in `kmacro-step-edit-macro'.
859 This keymap is an extension to the `query-replace-map', allowing the
860 following additional answers: `insert', `insert-1', `replace', `replace-1',
861 `append', `append-end', `act-repeat', `skip-end', `skip-keep'.")
863 ;; query-replace-map answers include: `act', `skip', `act-and-show',
864 ;; `exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
865 ;; `automatic', `backup', `exit-prefix', and `help'.")
866 ;; Also: `quit', `edit-replacement'
868 (set-keymap-parent kmacro-step-edit-map query-replace-map)
870 (define-key kmacro-step-edit-map "\t" 'act-repeat)
871 (define-key kmacro-step-edit-map [tab] 'act-repeat)
872 (define-key kmacro-step-edit-map "\C-k" 'skip-rest)
873 (define-key kmacro-step-edit-map "c" 'automatic)
874 (define-key kmacro-step-edit-map "f" 'skip-keep)
875 (define-key kmacro-step-edit-map "q" 'quit)
876 (define-key kmacro-step-edit-map "d" 'skip)
877 (define-key kmacro-step-edit-map "\C-d" 'skip)
878 (define-key kmacro-step-edit-map "i" 'insert)
879 (define-key kmacro-step-edit-map "I" 'insert-1)
880 (define-key kmacro-step-edit-map "r" 'replace)
881 (define-key kmacro-step-edit-map "R" 'replace-1)
882 (define-key kmacro-step-edit-map "a" 'append)
883 (define-key kmacro-step-edit-map "A" 'append-end)
885 (defvar kmacro-step-edit-prefix-commands
886 '(universal-argument universal-argument-more universal-argument-minus
887 digit-argument negative-argument)
888 "Commands which builds up a prefix arg for the current command")
890 (defun kmacro-step-edit-prompt (macro index)
891 ;; Show step-edit prompt
892 (let ((keys (and (not kmacro-step-edit-appending)
893 index (substring macro index executing-macro-index)))
894 (future (and (not kmacro-step-edit-appending)
895 (substring macro executing-macro-index)))
896 (message-log-max nil)
897 (curmsg (current-message)))
899 ;; TODO: Scroll macro if max-mini-window-height is too small.
900 (message (concat
901 (format "Macro: %s%s%s%s%s\n"
902 (format-kbd-macro kmacro-step-edit-new-macro 1)
903 (if (and kmacro-step-edit-new-macro (> (length kmacro-step-edit-new-macro) 0)) " " "")
904 (propertize (if keys (format-kbd-macro keys)
905 (if kmacro-step-edit-appending "<APPEND>" "<INSERT>")) 'face 'region)
906 (if future " " "")
907 (if future (format-kbd-macro future) ""))
908 (cond
909 ((minibufferp)
910 (format "%s\n%s\n"
911 (propertize "\
912 minibuffer " 'face 'header-line)
913 (buffer-substring (point-min) (point-max))))
914 (curmsg
915 (format "%s\n%s\n"
916 (propertize "\
917 echo area " 'face 'header-line)
918 curmsg))
919 (t ""))
920 (if keys
921 (format "%s\n%s%s %S [yn iIaArR C-k kq!] "
922 (propertize "\
923 --------------Step Edit Keyboard Macro [?: help]---------------" 'face 'mode-line)
924 (if kmacro-step-edit-help "\
925 Step: y/SPC: execute next, d/n/DEL: skip next, f: skip but keep
926 TAB: execute while same, ?: toggle help
927 Edit: i: insert, r: replace, a: append, A: append at end,
928 I/R: insert/replace with one sequence,
929 End: !/c: execute rest, C-k: skip rest and save, q/C-g: quit
930 ----------------------------------------------------------------
931 " "")
932 (propertize "Next command:" 'face 'bold)
933 this-command)
934 (propertize
935 (format "Type key sequence%s to insert and execute%s: "
936 (if (numberp kmacro-step-edit-inserting) "" "s")
937 (if (numberp kmacro-step-edit-inserting) "" " (end with C-j)"))
938 'face 'bold))))))
940 (defun kmacro-step-edit-query ()
941 ;; Pre-command hook function for step-edit in "command" mode
942 (let ((resize-mini-windows t)
943 (max-mini-window-height kmacro-step-edit-mini-window-height)
944 act restore-index next-index)
946 ;; Handle commands which reads additional input using read-char.
947 (cond
948 ((and (eq this-command 'quoted-insert)
949 (not (eq kmacro-step-edit-action t)))
950 ;; Find the actual end of this key sequence.
951 ;; Must be able to backtrack in case we actually execute it.
952 (setq restore-index executing-macro-index)
953 (let (unread-command-events)
954 (quoted-insert 0)
955 (when unread-command-events
956 (setq executing-macro-index (- executing-macro-index (length unread-command-events))
957 next-index executing-macro-index)))))
959 ;; Query the user; stop macro exection temporarily
960 (let ((macro executing-kbd-macro)
961 (executing-kbd-macro nil)
962 (defining-kbd-macro nil))
964 ;; Any action requested by previous command
965 (cond
966 ((eq kmacro-step-edit-action t) ;; Reentry for actual command @ end of prefix arg.
967 (cond
968 ((eq this-command 'quoted-insert)
969 (clear-this-command-keys) ;; recent-keys actually
970 (let (unread-command-events)
971 (quoted-insert (prefix-numeric-value current-prefix-arg))
972 (setq kmacro-step-edit-new-macro
973 (vconcat kmacro-step-edit-new-macro (recent-keys)))
974 (when unread-command-events
975 (setq kmacro-step-edit-new-macro
976 (substring kmacro-step-edit-new-macro 0 (- (length unread-command-events)))
977 executing-macro-index (- executing-macro-index (length unread-command-events)))))
978 (setq current-prefix-arg nil
979 prefix-arg nil)
980 (setq act 'ignore))
982 (setq act 'act)))
983 (setq kmacro-step-edit-action nil))
984 ((eq this-command kmacro-step-edit-action) ;; TAB -> activate while same command
985 (setq act 'act))
987 (setq kmacro-step-edit-action nil)))
989 ;; Handle prefix arg, or query user
990 (cond
991 (act act) ;; set above
992 ((memq this-command kmacro-step-edit-prefix-commands)
993 (unless kmacro-step-edit-prefix-index
994 (setq kmacro-step-edit-prefix-index kmacro-step-edit-key-index))
995 (setq act 'universal-argument))
996 ((eq this-command 'universal-argument-other-key)
997 (setq act 'universal-argument))
999 (kmacro-step-edit-prompt macro (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index))
1000 (setq act (lookup-key kmacro-step-edit-map
1001 (vector (with-current-buffer (current-buffer) (read-event))))))))
1003 ;; Resume macro execution and perform the action
1004 (cond
1005 ((eq act 'universal-argument)
1006 nil)
1007 ((cond
1008 ((eq act 'act)
1010 ((eq act 'act-repeat)
1011 (setq kmacro-step-edit-action this-command)
1013 ((eq act 'quit)
1014 (setq kmacro-step-edit-replace nil)
1015 (setq kmacro-step-edit-active 'ignore)
1016 nil)
1017 ((eq act 'skip)
1018 (setq kmacro-step-edit-prefix-index nil)
1019 nil)
1020 ((eq act 'skip-keep)
1021 (setq this-command 'ignore)
1023 ((eq act 'skip-rest)
1024 (setq kmacro-step-edit-active 'ignore)
1025 nil)
1026 ((memq act '(automatic exit))
1027 (setq kmacro-step-edit-active nil)
1028 (setq act t)
1030 ((member act '(insert-1 insert))
1031 (setq executing-macro-index (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index))
1032 (setq kmacro-step-edit-inserting (if (eq act 'insert-1) 1 t))
1033 nil)
1034 ((member act '(replace-1 replace))
1035 (setq kmacro-step-edit-inserting (if (eq act 'replace-1) 1 t))
1036 (setq kmacro-step-edit-prefix-index nil)
1037 (if (= executing-macro-index (length executing-kbd-macro))
1038 (setq executing-kbd-macro (vconcat executing-kbd-macro [nil])
1039 kmacro-step-edit-appending t))
1040 nil)
1041 ((eq act 'append)
1042 (setq kmacro-step-edit-inserting t)
1043 (if (= executing-macro-index (length executing-kbd-macro))
1044 (setq executing-kbd-macro (vconcat executing-kbd-macro [nil])
1045 kmacro-step-edit-appending t))
1047 ((eq act 'append-end)
1048 (if (= executing-macro-index (length executing-kbd-macro))
1049 (setq executing-kbd-macro (vconcat executing-kbd-macro [nil])
1050 kmacro-step-edit-inserting t
1051 kmacro-step-edit-appending t)
1052 (setq kmacro-step-edit-active 'append-end))
1053 (setq act t)
1055 ((eq act 'help)
1056 (setq executing-macro-index (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index))
1057 (setq kmacro-step-edit-help (not kmacro-step-edit-help))
1058 nil)
1059 (t ;; Ignore unknown responses
1060 (setq executing-macro-index (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index))
1061 nil))
1062 (if (> executing-macro-index (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index))
1063 (setq kmacro-step-edit-new-macro
1064 (vconcat kmacro-step-edit-new-macro
1065 (substring executing-kbd-macro
1066 (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index)
1067 (if (eq act t) nil executing-macro-index)))
1068 kmacro-step-edit-prefix-index nil))
1069 (if restore-index
1070 (setq executing-macro-index restore-index)))
1072 (setq this-command 'ignore)))
1073 (setq kmacro-step-edit-key-index next-index)))
1075 (defun kmacro-step-edit-insert ()
1076 ;; Pre-command hook function for step-edit in "insert" mode
1077 (let ((resize-mini-windows t)
1078 (max-mini-window-height kmacro-step-edit-mini-window-height)
1079 (macro executing-kbd-macro)
1080 (executing-kbd-macro nil)
1081 (defining-kbd-macro nil)
1082 cmd keys next-index)
1083 (setq executing-macro-index (or kmacro-step-edit-prefix-index kmacro-step-edit-key-index)
1084 kmacro-step-edit-prefix-index nil)
1085 (kmacro-step-edit-prompt macro nil)
1086 ;; Now, we have read a key sequence from the macro, but we don't want
1087 ;; to execute it yet. So push it back and read another sequence.
1088 (reset-this-command-lengths)
1089 (setq keys (read-key-sequence nil nil nil nil t))
1090 (setq cmd (key-binding keys t nil))
1091 (if (cond
1092 ((null cmd)
1094 ((eq cmd 'quoted-insert)
1095 (clear-this-command-keys) ;; recent-keys actually
1096 (quoted-insert (prefix-numeric-value current-prefix-arg))
1097 (setq current-prefix-arg nil
1098 prefix-arg nil)
1099 (setq keys (vconcat keys (recent-keys)))
1100 (when (numberp kmacro-step-edit-inserting)
1101 (setq kmacro-step-edit-inserting nil)
1102 (when unread-command-events
1103 (setq keys (substring keys 0 (- (length unread-command-events)))
1104 executing-macro-index (- executing-macro-index (length unread-command-events))
1105 next-index executing-macro-index
1106 unread-command-events nil)))
1107 (setq cmd 'ignore)
1108 nil)
1109 ((memq cmd kmacro-step-edit-prefix-commands)
1110 (setq universal-argument-num-events 0)
1111 (reset-this-command-lengths)
1112 nil)
1113 ((eq cmd 'universal-argument-other-key)
1114 (setq kmacro-step-edit-action t)
1115 (setq universal-argument-num-events 0)
1116 (reset-this-command-lengths)
1117 (if (numberp kmacro-step-edit-inserting)
1118 (setq kmacro-step-edit-inserting nil))
1119 nil)
1120 ((numberp kmacro-step-edit-inserting)
1121 (setq kmacro-step-edit-inserting nil)
1122 nil)
1123 ((equal keys "\C-j")
1124 (setq kmacro-step-edit-inserting nil)
1125 (setq kmacro-step-edit-action nil)
1126 ;; Forget any (partial) prefix arg from next command
1127 (setq kmacro-step-edit-prefix-index nil)
1128 (reset-this-command-lengths)
1129 (setq overriding-terminal-local-map nil)
1130 (setq universal-argument-num-events nil)
1131 (setq next-index kmacro-step-edit-key-index)
1133 (t nil))
1134 (setq this-command 'ignore)
1135 (setq this-command cmd)
1136 (if (memq this-command '(self-insert-command digit-argument))
1137 (setq last-command-char (aref keys (1- (length keys)))))
1138 (if keys
1139 (setq kmacro-step-edit-new-macro (vconcat kmacro-step-edit-new-macro keys))))
1140 (setq kmacro-step-edit-key-index next-index)))
1142 (defun kmacro-step-edit-pre-command ()
1143 (remove-hook 'post-command-hook 'kmacro-step-edit-post-command)
1144 (when kmacro-step-edit-active
1145 (cond
1146 ((eq kmacro-step-edit-active 'ignore)
1147 (setq this-command 'ignore))
1148 ((eq kmacro-step-edit-active 'append-end)
1149 (if (= executing-macro-index (length executing-kbd-macro))
1150 (setq executing-kbd-macro (vconcat executing-kbd-macro [nil])
1151 kmacro-step-edit-inserting t
1152 kmacro-step-edit-appending t
1153 kmacro-step-edit-active t)))
1154 ((/= kmacro-step-edit-num-input-keys num-input-keys)
1155 (if kmacro-step-edit-inserting
1156 (kmacro-step-edit-insert)
1157 (kmacro-step-edit-query))
1158 (setq kmacro-step-edit-num-input-keys num-input-keys)
1159 (if (and kmacro-step-edit-appending (not kmacro-step-edit-inserting))
1160 (setq kmacro-step-edit-appending nil
1161 kmacro-step-edit-active 'ignore)))))
1162 (when (eq kmacro-step-edit-active t)
1163 (add-hook 'post-command-hook 'kmacro-step-edit-post-command t)))
1165 (defun kmacro-step-edit-minibuf-setup ()
1166 (remove-hook 'pre-command-hook 'kmacro-step-edit-pre-command t)
1167 (when kmacro-step-edit-active
1168 (add-hook 'pre-command-hook 'kmacro-step-edit-pre-command nil t)))
1170 (defun kmacro-step-edit-post-command ()
1171 (remove-hook 'pre-command-hook 'kmacro-step-edit-pre-command)
1172 (when kmacro-step-edit-active
1173 (add-hook 'pre-command-hook 'kmacro-step-edit-pre-command nil nil)
1174 (if kmacro-step-edit-key-index
1175 (setq executing-macro-index kmacro-step-edit-key-index)
1176 (setq kmacro-step-edit-key-index executing-macro-index))))
1179 (defun kmacro-step-edit-macro ()
1180 "Step edit and execute last keyboard macro.
1182 To customize possible responses, change the \"bindings\" in `kmacro-step-edit-map'."
1183 (interactive)
1184 (let ((kmacro-step-edit-active t)
1185 (kmacro-step-edit-new-macro "")
1186 (kmacro-step-edit-inserting nil)
1187 (kmacro-step-edit-appending nil)
1188 (kmacro-step-edit-replace t)
1189 (kmacro-step-edit-prefix-index nil)
1190 (kmacro-step-edit-key-index 0)
1191 (kmacro-step-edit-action nil)
1192 (kmacro-step-edit-help nil)
1193 (kmacro-step-edit-num-input-keys num-input-keys)
1194 (pre-command-hook pre-command-hook)
1195 (post-command-hook post-command-hook)
1196 (minibuffer-setup-hook minibuffer-setup-hook))
1197 (add-hook 'pre-command-hook 'kmacro-step-edit-pre-command nil)
1198 (add-hook 'post-command-hook 'kmacro-step-edit-post-command t)
1199 (add-hook 'minibuffer-setup-hook 'kmacro-step-edit-minibuf-setup t)
1200 (call-last-kbd-macro nil nil)
1201 (when (and kmacro-step-edit-replace
1202 kmacro-step-edit-new-macro
1203 (not (equal last-kbd-macro kmacro-step-edit-new-macro)))
1204 (kmacro-push-ring)
1205 (setq last-kbd-macro kmacro-step-edit-new-macro))))
1207 (provide 'kmacro)
1209 ;;; arch-tag: d3fe0b24-ae41-47de-a4d6-41a77d5559f0
1210 ;;; kmacro.el ends here