Faire fonctionner la commande introuvable sous zsh

14

J'essaie de faire command-not-foundfonctionner la fonctionnalité sous Ubuntu sous zsh, sans chance:

➜  ~  pdfunite
zsh: command not found: pdfunite
➜  ~  bash
u@ub:~$ pdfunite
The program 'pdfunite' is currently not installed.  You can install it by typing:
sudo apt-get install poppler-utils

Est-ce que quelqu'un sait s'il existe un package disponible qui prend également en charge zsh?

Je vous remercie.

grm
la source

Réponses:

13

Vous devez le trouver dans votre .zshrc:

if [[ -s '/etc/zsh_command_not_found' ]]; then
  source '/etc/zsh_command_not_found'
fi

Le script fait partie du package command-not-found :

$ apt-cache search zsh_command_not_found
> command-not-found: /etc/zsh_command_not_found
ahilsend
la source