In Emacs, the M-x
keybinding lets you search and execute available commands. I'm looking for a similar function/functionality that lets you search and install available packages from the Emacs repositories.
The best I can do at present is M-x package-list-packages
followed by C-s
, but this has a few shortcomings:
- It requires that you navigate to the list of available packages, whereas I'd like something that works from most places within Emacs.
- It only lets you cycle through the package list, whereas I'd like something that displays a narrowing list of results.
- It doesn't support fuzzy matching (like Helm).
Does the functionality I'm looking for exist? Or is there a package that provides this functionality for Emacs? And if so, where can I find it?
M-x package-install
withhelm-mode
enabled – Camala