Far funzionare il comando non trovato sotto zsh


14

Sto cercando di far command-not-foundfunzionare la funzionalità sotto Ubuntu sotto zsh, senza fortuna:

➜  ~  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

Qualcuno sa se è disponibile un pacchetto che supporta anche zsh?

Grazie.

Risposte:


13

Devi cercarlo nel tuo .zshrc:

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

Lo script fa parte del pacchetto command-not-found :

$ apt-cache search zsh_command_not_found
> command-not-found: /etc/zsh_command_not_found
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.