Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / repeat.el
CommitLineData
0a8cbe68 1;;; repeat.el --- convenient way to repeat the previous command
fd51b1bc 2
c90f2757 3;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005,
409cc4a3 4;; 2006, 2007, 2008 Free Software Foundation, Inc.
fd51b1bc
RS
5
6;; Author: Will Mengarini <seldon@eskimo.com>
7;; Created: Mo 02 Mar 98
8;; Version: 0.51, We 13 May 98
0a8cbe68 9;; Keywords: convenience, vi, repeat
fd51b1bc
RS
10
11;; This file is part of GNU Emacs.
12
2be7dabc 13;; GNU Emacs is free software; you can redistribute it and/or modify
fd51b1bc 14;; it under the terms of the GNU General Public License as published by
b4aa6026 15;; the Free Software Foundation; either version 3, or (at your option)
fd51b1bc
RS
16;; any later version.
17
2be7dabc 18;; GNU Emacs is distributed in the hope that it will be useful,
fd51b1bc
RS
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
24;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
25;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26;; Boston, MA 02110-1301, USA.
fd51b1bc
RS
27
28;;; Commentary:
29
30;; Sometimes the fastest way to get something done is just to lean on a key;
31;; moving forward through a series of words by leaning on M-f is an example.
32;; But 'forward-page is orthodoxily bound to C-x ], so moving forward through
33;; several pages requires
34;; Loop until desired page is reached:
35;; Hold down control key with left pinkie.
36;; Tap <x>.
37;; Lift left pinkie off control key.
38;; Tap <]>.
39;; This is a pain in the ass.
40
41;; This package defines a command that repeats the preceding command,
0a8cbe68
RS
42;; whatever that was, including its arguments, whatever they were.
43;; This command is connected to the key C-x z.
44;; To repeat the previous command once, type C-x z.
45;; To repeat it a second time immediately after, type just z.
46;; By typing z again and again, you can repeat the command over and over.
fd51b1bc
RS
47
48;; This works correctly inside a keyboard macro as far as recording and
49;; playback go, but `edit-kbd-macro' gets it wrong. That shouldn't really
50;; matter; if you need to edit something like
51;; C-x ] ;; forward-page
0a8cbe68 52;; C-x z ;; repeat
fd51b1bc
RS
53;; zz ;; self-insert-command * 2
54;; C-x ;; Control-X-prefix
0a8cbe68 55;; you can just kill the bogus final 2 lines, then duplicate the repeat line
fd51b1bc 56;; as many times as it's really needed. Also, `edit-kbd-macro' works
0a8cbe68
RS
57;; correctly if `repeat' is invoked through a rebinding to a single keystroke
58;; and the global variable repeat-on-final-keystroke is set to a value
fd51b1bc 59;; that doesn't include that keystroke. For example, the lines
0a8cbe68
RS
60;; (global-set-key "\C-z" 'repeat)
61;; (setq repeat-on-final-keystroke "z")
fd51b1bc 62;; in your .emacs would allow `edit-kbd-macro' to work correctly when C-z was
0a8cbe68
RS
63;; used in a keyboard macro to invoke `repeat', but would still allow C-x z
64;; to be used for `repeat' elsewhere. The real reason for documenting this
fd51b1bc
RS
65;; isn't that anybody would need it for the `edit-kbd-macro' problem, but
66;; that there might be other unexpected ramifications of re-executing on
67;; repetitions of the final keystroke, and this shows how to do workarounds.
68
69;; If the preceding command had a prefix argument, that argument is applied
0a8cbe68 70;; to the repeat command, unless the repeat command is given a new prefix
fd51b1bc
RS
71;; argument, in which case it applies that new prefix argument to the
72;; preceding command. This means a key sequence like C-u - C-x C-t can be
73;; repeated. (It shoves the preceding line upward in the buffer.)
74
0a8cbe68 75;; Here are some other key sequences with which repeat might be useful:
fd51b1bc
RS
76;; C-u - C-t [shove preceding character backward in line]
77;; C-u - M-t [shove preceding word backward in sentence]
78;; C-x ^ enlarge-window [one line] (assuming frame has > 1 window)
79;; C-u - C-x ^ [shrink window one line]
80;; C-x ` next-error
81;; C-u - C-x ` [previous error]
82;; C-x DEL backward-kill-sentence
83;; C-x e call-last-kbd-macro
84;; C-x r i insert-register
85;; C-x r t string-rectangle
86;; C-x TAB indent-rigidly [one character]
87;; C-u - C-x TAB [outdent rigidly one character]
88;; C-x { shrink-window-horizontally
89;; C-x } enlarge-window-horizontally
90
0a8cbe68
RS
91;; This command was first called `vi-dot', because
92;; it was inspired by the `.' command in the vi editor,
93;; but it was renamed to make its name more meaningful.
fd51b1bc
RS
94
95;;; Code:
96
fd51b1bc
RS
97;;;;; ************************* USER OPTIONS ************************** ;;;;;
98
0a8cbe68
RS
99(defcustom repeat-too-dangerous '(kill-this-buffer)
100 "Commands too dangerous to repeat with \\[repeat]."
9dc0cb3d
RS
101 :group 'convenience
102 :type '(repeat function))
fd51b1bc
RS
103
104;; If the last command was self-insert-command, the char to be inserted was
105;; obtained by that command from last-command-char, which has now been
0a8cbe68 106;; clobbered by the command sequence that invoked `repeat'. We could get it
fd51b1bc
RS
107;; from (recent-keys) & set last-command-char to that, "unclobbering" it, but
108;; this has the disadvantage that if the user types a sequence of different
0a8cbe68 109;; chars then invokes repeat, only the final char will be inserted. In vi,
fd51b1bc 110;; the dot command can reinsert the entire most-recently-inserted sequence.
fd51b1bc 111
0a8cbe68
RS
112(defvar repeat-message-function nil
113 "If non-nil, function used by `repeat' command to say what it's doing.
fd51b1bc 114Message is something like \"Repeating command glorp\".
9dc0cb3d 115To disable such messages, set this variable to `ignore'. To customize
fd51b1bc
RS
116display, assign a function that takes one string as an arg and displays
117it however you want.")
118
0a8cbe68
RS
119(defcustom repeat-on-final-keystroke t
120 "Allow `repeat' to re-execute for repeating lastchar of a key sequence.
121If this variable is t, `repeat' determines what key sequence
fd51b1bc
RS
122it was invoked by, extracts the final character of that sequence, and
123re-executes as many times as that final character is hit; so for example
0a8cbe68 124if `repeat' is bound to C-x z, typing C-x z z z repeats the previous command
fd51b1bc 1253 times. If this variable is a sequence of characters, then re-execution
0a8cbe68 126only occurs if the final character by which `repeat' was invoked is a
9dc0cb3d
RS
127member of that sequence. If this variable is nil, no re-execution occurs."
128 :group 'convenience
129 :type 'boolean)
f1180544 130
fd51b1bc
RS
131;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;;
132
133;; The basic strategy is to use last-command, a variable built in to Emacs.
134;; There are 2 issues that complicate this strategy. The first is that
135;; last-command is given a bogus value when any kill command is executed;
0a8cbe68 136;; this is done to make it easy for `yank-pop' to know that it's being invoked
fd51b1bc 137;; after a kill command. The second is that the meaning of the command is
0a8cbe68 138;; often altered by the prefix arg, but although Emacs (19.34) has a
fd51b1bc
RS
139;; builtin prefix-arg specifying the arg for the next command, as well as a
140;; builtin current-prefix-arg, it has no builtin last-prefix-arg.
141
142;; There's a builtin (this-command-keys), the return value of which could be
143;; executed with (command-execute), but there's no (last-command-keys).
144;; Using (last-command-keys) if it existed wouldn't be optimal, however,
0a8cbe68 145;; since it would complicate checking membership in repeat-too-dangerous.
fd51b1bc
RS
146
147;; It would of course be trivial to implement last-prefix-arg &
148;; true-last-command by putting something in post-command-hook, but that
149;; entails a performance hit; the approach taken below avoids that.
150
fd51b1bc
RS
151;; Coping with strings of self-insert commands gets hairy when they interact
152;; with auto-filling. Most problems are eliminated by remembering what we're
153;; self-inserting, so we only need to get it from the undo information once.
154
392abfd2
MR
155;; With Emacs 22.2 the variable `last-repeatable-command' stores the
156;; most recently executed command that was not bound to an input event.
157;; `repeat' now repeats that command instead of `real-last-command' to
158;; avoid a "... must be bound to an event with parameters" error.
159
0a8cbe68 160(defvar repeat-last-self-insert nil
fd51b1bc
RS
161 "If last repeated command was `self-insert-command', it inserted this.")
162
163;; That'll require another keystroke count so we know we're in a string of
164;; repetitions of self-insert commands:
165
0a8cbe68 166(defvar repeat-num-input-keys-at-self-insert -1
fd51b1bc
RS
167 "# key sequences read in Emacs session when `self-insert-command' repeated.")
168
0a8cbe68 169;;;;; *************** ANALOGOUS HACKS TO `repeat' ITSELF **************** ;;;;;
fd51b1bc
RS
170
171;; That mechanism of checking num-input-keys to figure out what's really
172;; going on can be useful to other commands that need to fine-tune their
0a8cbe68
RS
173;; interaction with repeat. Instead of requiring them to advise repeat, we
174;; can just defvar the value they need here, & setq it in the repeat command:
fd51b1bc 175
0a8cbe68
RS
176(defvar repeat-num-input-keys-at-repeat -1
177 "# key sequences read in Emacs session when `repeat' last invoked.")
fd51b1bc
RS
178
179;; Also, we can assign a name to the test for which that variable is
180;; intended, which thereby documents here how to use it, & makes code that
181;; uses it self-documenting:
182
0a8cbe68
RS
183(defsubst repeat-is-really-this-command ()
184 "Return t if this command is happening because user invoked `repeat'.
fd51b1bc
RS
185Usually, when a command is executing, the Emacs builtin variable
186`this-command' identifies the command the user invoked. Some commands modify
0a8cbe68 187that variable on the theory they're doing more good than harm; `repeat' does
fd51b1bc 188that, and usually does do more good than harm. However, like all do-gooders,
0a8cbe68 189sometimes `repeat' gets surprising results from its altruism. The value of
fd51b1bc 190this function is always whether the value of `this-command' would've been
0a8cbe68
RS
191'repeat if `repeat' hadn't modified it."
192 (= repeat-num-input-keys-at-repeat num-input-keys))
fd51b1bc 193
0a8cbe68 194;; An example of the use of (repeat-is-really-this-command) may still be
fd51b1bc
RS
195;; available in <http://www.eskimo.com/~seldon/dotemacs.el>; search for
196;; "defun wm-switch-buffer".
197
0a8cbe68 198;;;;; ******************* THE REPEAT COMMAND ITSELF ******************* ;;;;;
fd51b1bc 199
7d6a2ca4
DL
200(defvar repeat-previous-repeated-command nil
201 "The previous repeated command.")
202
9a407f82
MR
203;; The following variable counts repeated self-insertions. The idea is
204;; that repeating a self-insertion command and subsequently undoing it
205;; should have almost the same effect as if the characters were inserted
206;; manually. The basic difference is that we leave in one undo-boundary
207;; between the original insertion and its first repetition.
208(defvar repeat-undo-count nil
209 "Number of self-insertions since last `undo-boundary'.")
210
fd51b1bc 211;;;###autoload
0a8cbe68 212(defun repeat (repeat-arg)
fd51b1bc 213 "Repeat most recently executed command.
392abfd2
MR
214With prefix arg, apply new prefix arg to that command; otherwise,
215use the prefix arg that was used before (if any).
7d6a2ca4 216This command is like the `.' command in the vi editor.
fd51b1bc 217
392abfd2
MR
218If this command is invoked by a multi-character key sequence, it
219can then be repeated by repeating the final character of that
220sequence. This behavior can be modified by the global variable
221`repeat-on-final-keystroke'.
222
223`repeat' ignores commands bound to input events. Hence the term
224\"most recently executed command\" shall be read as \"most
225recently executed command not bound to an input event\"."
fd51b1bc
RS
226 ;; The most recently executed command could be anything, so surprises could
227 ;; result if it were re-executed in a context where new dynamically
228 ;; localized variables were shadowing global variables in a `let' clause in
229 ;; here. (Remember that GNU Emacs 19 is dynamically localized.)
230 ;; To avoid that, I tried the `lexical-let' of the Common Lisp extensions,
231 ;; but that entails a very noticeable performance hit, so instead I use the
0a8cbe68 232 ;; "repeat-" prefix, reserved by this package, for *local* variables that
fd51b1bc
RS
233 ;; might be visible to re-executed commands, including this function's arg.
234 (interactive "P")
392abfd2
MR
235 (when (eq last-repeatable-command 'repeat)
236 (setq last-repeatable-command repeat-previous-repeated-command))
237 (cond
238 ((null last-repeatable-command)
7d6a2ca4 239 (error "There is nothing to repeat"))
392abfd2
MR
240 ((eq last-repeatable-command 'mode-exit)
241 (error "last-repeatable-command is mode-exit & can't be repeated"))
242 ((memq last-repeatable-command repeat-too-dangerous)
243 (error "Command %S too dangerous to repeat automatically"
244 last-repeatable-command)))
245 (setq this-command last-repeatable-command
246 repeat-previous-repeated-command last-repeatable-command
247 repeat-num-input-keys-at-repeat num-input-keys)
0a8cbe68
RS
248 (when (null repeat-arg)
249 (setq repeat-arg last-prefix-arg))
fd51b1bc 250 ;; Now determine whether to loop on repeated taps of the final character
0a8cbe68 251 ;; of the key sequence that invoked repeat. The Emacs global
fd51b1bc
RS
252 ;; last-command-char contains the final character now, but may not still
253 ;; contain it after the previous command is repeated, so the character
254 ;; needs to be saved.
0a8cbe68
RS
255 (let ((repeat-repeat-char
256 (if (eq repeat-on-final-keystroke t)
392abfd2 257 last-command-char
fd51b1bc
RS
258 ;; allow only specified final keystrokes
259 (car (memq last-command-char
260 (listify-key-sequence
0a8cbe68 261 repeat-on-final-keystroke))))))
392abfd2
MR
262 (if (memq last-repeatable-command '(exit-minibuffer
263 minibuffer-complete-and-exit
264 self-insert-and-exit))
0a8cbe68
RS
265 (let ((repeat-command (car command-history)))
266 (repeat-message "Repeating %S" repeat-command)
267 (eval repeat-command))
268 (if (null repeat-arg)
392abfd2
MR
269 (repeat-message "Repeating command %S" last-repeatable-command)
270 (setq current-prefix-arg repeat-arg)
271 (repeat-message
272 "Repeating command %S %S" repeat-arg last-repeatable-command))
273 (if (eq last-repeatable-command 'self-insert-command)
fd51b1bc
RS
274 (let ((insertion
275 (if (<= (- num-input-keys
0a8cbe68 276 repeat-num-input-keys-at-self-insert)
fd51b1bc 277 1)
0a8cbe68 278 repeat-last-self-insert
fd51b1bc
RS
279 (let ((range (nth 1 buffer-undo-list)))
280 (condition-case nil
0a8cbe68 281 (setq repeat-last-self-insert
fd51b1bc
RS
282 (buffer-substring (car range)
283 (cdr range)))
f1180544 284 (error (error "%s %s %s" ;Danger, Will Robinson!
0a8cbe68 285 "repeat can't intuit what you"
fd51b1bc
RS
286 "inserted before auto-fill"
287 "clobbered it, sorry")))))))
0a8cbe68 288 (setq repeat-num-input-keys-at-self-insert num-input-keys)
7540af85
RS
289 ;; If the self-insert had a repeat count, INSERTION
290 ;; includes that many copies of the same character.
291 ;; So use just the first character
292 ;; and repeat it the right number of times.
00ac134b 293 (setq insertion (substring insertion -1))
7540af85
RS
294 (let ((count (prefix-numeric-value repeat-arg))
295 (i 0))
392abfd2
MR
296 ;; Run pre- and post-command hooks for self-insertion too.
297 (run-hooks 'pre-command-hook)
9a407f82
MR
298 (cond
299 ((not repeat-undo-count))
300 ((< repeat-undo-count 20)
301 ;; Don't make an undo-boundary here.
302 (setq repeat-undo-count (1+ repeat-undo-count)))
303 (t
304 ;; Make an undo-boundary after 20 repetitions only.
305 (undo-boundary)
306 (setq repeat-undo-count 1)))
7540af85
RS
307 (while (< i count)
308 (repeat-self-insert insertion)
392abfd2
MR
309 (setq i (1+ i)))
310 (run-hooks 'post-command-hook)))
311 (let ((indirect (indirect-function last-repeatable-command)))
9a407f82
MR
312 ;; Make each repetition undo separately.
313 (undo-boundary)
00ac134b
KH
314 (if (or (stringp indirect)
315 (vectorp indirect))
392abfd2
MR
316 ;; Bind real-last-command so that executing the macro does
317 ;; not alter it. Do the same for last-repeatable-command.
318 (let ((real-last-command real-last-command)
319 (last-repeatable-command last-repeatable-command))
320 (execute-kbd-macro last-repeatable-command))
ccb9871d 321 (run-hooks 'pre-command-hook)
392abfd2 322 (call-interactively last-repeatable-command)
ccb9871d 323 (run-hooks 'post-command-hook)))))
0a8cbe68 324 (when repeat-repeat-char
fd51b1bc
RS
325 ;; A simple recursion here gets into trouble with max-lisp-eval-depth
326 ;; on long sequences of repetitions of a command like `forward-word'
327 ;; (only 32 repetitions are possible given the default value of 200 for
328 ;; max-lisp-eval-depth), but if I now locally disable the repeat char I
329 ;; can iterate indefinitely here around a single level of recursion.
9a407f82
MR
330 (let (repeat-on-final-keystroke
331 ;; Bind `undo-inhibit-record-point' to t in order to avoid
332 ;; recording point in `buffer-undo-list' here. We have to
333 ;; do this since the command loop does not set the last
334 ;; position of point thus confusing the point recording
335 ;; mechanism when inserting or deleting text.
336 (undo-inhibit-record-point t))
392abfd2 337 (setq real-last-command 'repeat)
9a407f82
MR
338 (setq repeat-undo-count 1)
339 (unwind-protect
340 (while (eq (read-event) repeat-repeat-char)
341 (repeat repeat-arg))
342 ;; Make sure `repeat-undo-count' is reset.
343 (setq repeat-undo-count nil))
fd51b1bc
RS
344 (setq unread-command-events (list last-input-event))))))
345
0a8cbe68 346(defun repeat-self-insert (string)
9dc0cb3d
RS
347 (let ((i 0))
348 (while (< i (length string))
349 (let ((last-command-char (aref string i)))
350 (self-insert-command 1))
351 (setq i (1+ i)))))
352
0a8cbe68
RS
353(defun repeat-message (format &rest args)
354 "Like `message' but displays with `repeat-message-function' if non-nil."
fd51b1bc 355 (let ((message (apply 'format format args)))
0a8cbe68
RS
356 (if repeat-message-function
357 (funcall repeat-message-function message)
fd51b1bc
RS
358 (message "%s" message))))
359
360;; OK, there's one situation left where that doesn't work correctly: when the
361;; most recent self-insertion provoked an auto-fill. The problem is that
362;; unravelling the undo information after an auto-fill is too hard, since all
363;; kinds of stuff can get in there as a result of comment prefixes etc. It'd
364;; be possible to advise do-auto-fill to record the most recent
365;; self-insertion before it does its thing, but that's a performance hit on
366;; auto-fill, which already has performance problems; so it's better to just
367;; leave it like this. If text didn't provoke an auto-fill when the user
368;; typed it, this'll correctly repeat its self-insertion, even if the
369;; repetition does cause auto-fill.
370
371;; If you wanted perfection, probably it'd be necessary to hack do-auto-fill
372;; into 2 functions, maybe-do-auto-fill & really-do-auto-fill, because only
373;; really-do-auto-fill should be advised. As things are, either the undo
374;; information would need to be scanned on every do-auto-fill invocation, or
375;; the code at the top of do-auto-fill deciding whether filling is necessary
376;; would need to be duplicated in the advice, wasting execution time when
377;; filling does turn out to be necessary.
378
379;; I thought maybe this story had a moral, something about functional
380;; decomposition; but now I'm not even sure of that, since a function
381;; call per se is a performance hit, & even the code that would
382;; correspond to really-do-auto-fill has performance problems that
383;; can make it necessary to stop typing while Emacs catches up.
384;; Maybe the real moral is that perfection is a chimera.
385
386;; Ah, hell, it's all going to fall into a black hole someday anyway.
387
388;;;;; ************************* EMACS CONTROL ************************* ;;;;;
389
0a8cbe68 390(provide 'repeat)
fd51b1bc 391
cbee283d 392;; arch-tag: cd569600-a1ad-4fa7-9062-bb91dfeaf1db
0a8cbe68 393;;; repeat.el ends here