Lorsqu'une fonction de complétion prend beaucoup de temps, je peux l'interrompre en appuyant sur Ctrl +C (touche d'interruption de terminal, envoie SIGINT) ou Ctrl +G (lié à send-break
). Il me reste alors le mot incomplet.
Cependant, s'il m'arrive d'appuyer sur Ctrl +C ou Ctrl +G juste au moment où la fonction de complétion se termine, mon appui sur une touche peut annuler la ligne de commande et me donner une nouvelle invite au lieu d'annuler la complétion.
Comment puis-je configurer zsh pour qu'une certaine touche annule une complétion en cours mais ne fasse rien si aucune fonction de complétion n'est active ?
Réponse acceptée :
Voici une solution qui configure un gestionnaire SIGINT qui rend Ctrl +C interrompre uniquement lorsque l'achèvement est actif.
# A completer widget that sets a flag for the duration of
# the completion so the SIGINT handler knows whether completion
# is active. It would be better if we could check some internal
# zsh parameter to determine if completion is running, but as
# far as I'm aware that isn't possible.
function interruptible-expand-or-complete {
COMPLETION_ACTIVE=1
# Bonus feature: automatically interrupt completion
# after a three second timeout.
# ( sleep 3; kill -INT $$ ) &!
zle expand-or-complete
COMPLETION_ACTIVE=0
}
# Bind our completer widget to tab.
zle -N interruptible-expand-or-complete
bindkey '^I' interruptible-expand-or-complete
# Interrupt only if completion is active.
function TRAPINT {
if [[ $COMPLETION_ACTIVE == 1 ]]; then
COMPLETION_ACTIVE=0
zle -M "Completion canceled."
# Returning non-zero tells zsh to handle SIGINT,
# which will interrupt the completion function.
return 1
else
# Returning zero tells zsh that we handled SIGINT;
# don't interrupt whatever is currently running.
return 0
fi
}