mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-01-21 01:36:32 +01:00
37 lines
1.4 KiB
Markdown
37 lines
1.4 KiB
Markdown
# command-not-found plugin
|
|
|
|
This plugin uses the command-not-found package for zsh to provide suggested packages to be installed if a command cannot be found.
|
|
|
|
To use it, add `command-not-found` to the plugins array of your zshrc file:
|
|
|
|
```zsh
|
|
plugins=(... command-not-found)
|
|
```
|
|
|
|
An example of how this plugin works in Ubuntu:
|
|
```
|
|
$ mutt
|
|
The program 'mutt' can be found in the following packages:
|
|
* mutt
|
|
* mutt-kz
|
|
* mutt-patched
|
|
Try: sudo apt install <selected package>
|
|
```
|
|
|
|
### Supported platforms
|
|
|
|
It works out of the box with the command-not-found packages for:
|
|
|
|
- [Ubuntu](https://launchpad.net/ubuntu/+source/command-not-found)
|
|
- [Debian](https://packages.debian.org/search?keywords=command-not-found)
|
|
- [Arch Linux](https://wiki.archlinux.org/title/Zsh#pkgfile_"command_not_found"_handler)
|
|
- [macOS (Homebrew)](https://github.com/Homebrew/brew/blob/main/docs/Command-Not-Found.md)
|
|
- [Fedora](https://fedoraproject.org/wiki/Features/PackageKitCommandNotFound)
|
|
- [NixOS](https://github.com/NixOS/nixpkgs/tree/master/nixos/modules/programs/command-not-found)
|
|
- [Termux](https://github.com/termux/command-not-found)
|
|
- [SUSE](https://www.unix.com/man-page/suse/1/command-not-found/)
|
|
- [Gentoo](https://github.com/AndrewAmmerlaan/command-not-found-gentoo/tree/main)
|
|
- [Void Linux](https://codeberg.org/classabbyamp/xbps-command-not-found)
|
|
|
|
You can add support for other platforms by submitting a Pull Request.
|