Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freed-wu/zsh-command-not-found
Seperated from oh-my-zsh
https://github.com/freed-wu/zsh-command-not-found
zsh
Last synced: 13 days ago
JSON representation
Seperated from oh-my-zsh
- Host: GitHub
- URL: https://github.com/freed-wu/zsh-command-not-found
- Owner: Freed-Wu
- License: mit
- Created: 2022-09-05T15:52:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-24T22:45:54.000Z (11 months ago)
- Last Synced: 2024-05-14T00:33:52.328Z (6 months ago)
- Topics: zsh
- Language: Shell
- Homepage: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/command-not-found
- Size: 1.95 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```### Supported platforms
It works out of the box with the command-not-found packages for:
- [Ubuntu](https://www.porcheron.info/command-not-found-for-zsh/)
- [Debian](https://packages.debian.org/search?keywords=command-not-found)
- [Arch Linux](https://wiki.archlinux.org/index.php/Pkgfile#Command_not_found)
- [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/)And
- [Homebrew](https://github.com/Homebrew/homebrew-command-not-found)
You can add support for other platforms by submitting a Pull Request.