Kommando-Not-Found unter zsh zum Laufen bringen


14

Ich versuche, die command-not-foundFunktion unter Ubuntu ohne Glück unter zsh zum Laufen zu bringen:

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

Weiß jemand, ob es ein Paket gibt, das auch zsh unterstützt?

Vielen Dank.

Antworten:


13

Sie müssen es in Ihrer .zshrc-Datei angeben:

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

Das Skript ist Teil des Pakets command-not-found :

$ apt-cache search zsh_command_not_found
> command-not-found: /etc/zsh_command_not_found
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.