รับคำสั่งไม่พบการทำงานภายใต้ zsh


14

ฉันกำลังพยายามทำให้command-not-foundฟีเจอร์ภายใต้ Ubuntu ทำงานภายใต้ 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

สคริปต์เป็นส่วนหนึ่งของคำสั่ง package ที่ไม่พบ :

$ 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.