Emacs a repeat
et repeat-complex-command
, qui tirent différentes commandes de l'historique des commandes et sont liés à différentes clés. Comment répétez-vous une dernière commande - qu'elle soit complexe ou non - avec une seule touche? En d'autres termes, une telle commande répétée se comporterait comme repeat-complex-command
si la dernière commande nécessitait une entrée, sinon elle se comporterait comme repeat
.
EDIT : En d'autres termes, je cherche un moyen de lire la dernière commande, complexe ou non, puis d'appeler soit repeat-complex-command
ou repeat
dessus, selon ce qui est approprié. Par exemple, disons qu'une telle nouvelle commande est liée à <f8>
. Alors:
(imitant
C-x M-: (repeat-complex-command)
avecM-z (zap-to-char)
):C-u M-z a <f8> <f8>
sera équivalent àC-u M-z a C-x M-: RET C-x M-: RET
(imitant
C-x z (repeat)
avecC-f (forward-char)
):C-u C-f <f8> <f8>
sera équivalent àC-u C-f C-x z z
Maintenant, repeat-complex-command
vous oblige à confirmer le formulaire Lisp qui sera exécuté. Pour permettre de répéter une commande complexe sans confirmation, j'ai écrit une version alternative de repeat-complex-command
, appelée repeat-complex-command-no-confirm
(voir ci-dessous pour l'implémentation). Le problème est que je ne comprends pas comment déterminer si je dois appeler repeat
ou repeat-complex-command-no-confirm
quand j'appuie <f8>
.
-
(defun repeat-complex-command-no-confirm (arg)
"Like `repeat-complex-command' but does not require confirmation."
;; Adapted from `repeat-complex-command' of Emacs 24.5.1.
(interactive "p")
(let ((elt (nth (1- arg) command-history))
newcmd)
(if elt
(progn
(setq newcmd elt)
;; If command to be redone does not match front of history,
;; add it to the history.
(or (equal newcmd (car command-history))
(setq command-history (cons newcmd command-history)))
(unwind-protect
(progn
;; Trick called-interactively-p into thinking that `newcmd' is
;; an interactive call (bug#14136).
(add-hook 'called-interactively-p-functions
#'repeat-complex-command--called-interactively-skip)
(eval newcmd))
(remove-hook 'called-interactively-p-functions
#'repeat-complex-command--called-interactively-skip)))
(if command-history
(error "Argument %d is beyond length of command history" arg)
(error "There are no previous complex commands to repeat")))))