Quando una funzione di completamento richiede molto tempo, posso interromperla premendo Ctrl +C (tasto di interruzione terminale, invia SIGINT) o Ctrl +G (legato a send-break
). Rimango quindi con la parola incompleta.
Tuttavia, se mi capita di premere Ctrl +C o Ctrl +G proprio al termine della funzione di completamento, la pressione del mio tasto potrebbe annullare la riga di comando e darmi un nuovo prompt invece di annullare il completamento.
Come posso impostare zsh in modo che una determinata chiave annulli un completamento in corso ma non faccia nulla se non è attiva alcuna funzione di completamento?
Risposta accettata:
Ecco una soluzione che imposta un gestore SIGINT che rende Ctrl +C interrompere solo quando il completamento è attivo.
# 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
}