zshでcommand-not-foundが機能するようにする


14

私はcommand-not-foundUbuntuでこの機能をzshで動作するようにしようとしています。

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

zshをサポートするパッケージが利用可能かどうかは誰にもわかりますか?

ありがとうございました。

回答:


13

あなたの.zshrcでそれを入手する必要があります:

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

このスクリプトは、コマンドcommand-not-foundパッケージの一部です。

$ apt-cache search zsh_command_not_found
> command-not-found: /etc/zsh_command_not_found
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.