Function: package-menu-mode-menu
package-menu-mode-menu is an interactive and byte-compiled function
defined in package.el.gz.
Signature
(package-menu-mode-menu ARG1)
Documentation
Menu for package-menu-mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(easy-menu-define package-menu-mode-menu package-menu-mode-map
"Menu for `package-menu-mode'."
'("Package"
["Describe Package" package-menu-describe-package :help "Display information about this package"]
["Open Package Website" package-browse-url
:help "Open the website of this package"]
["Help" package-menu-quick-help :help "Show short key binding help for package-menu-mode"]
"--"
["Refresh Package List" revert-buffer
:help "Redownload the package archive(s)"
:active (not package--downloads-in-progress)]
["Execute Marked Actions" package-menu-execute :help "Perform all the marked actions"]
"--"
["Mark All Available Upgrades" package-menu-mark-upgrades
:help "Mark packages that have a newer version for upgrading"
:active (not package--downloads-in-progress)]
["Mark All Obsolete for Deletion" package-menu-mark-obsolete-for-deletion :help "Mark all obsolete packages for deletion"]
["Mark for Install" package-menu-mark-install :help "Mark a package for installation and move to the next line"]
["Mark for Deletion" package-menu-mark-delete :help "Mark a package for deletion and move to the next line"]
["Unmark" package-menu-mark-unmark :help "Clear any marks on a package and move to the next line"]
"--"
("Filter Packages"
["Filter by Archive" package-menu-filter-by-archive
:help
"Prompt for archive(s), display only packages from those archives"]
["Filter by Description" package-menu-filter-by-description
:help
"Prompt for regexp, display only packages with matching description"]
["Filter by Keyword" package-menu-filter-by-keyword
:help
"Prompt for keyword(s), display only packages with matching keywords"]
["Filter by Name" package-menu-filter-by-name
:help
"Prompt for regexp, display only packages whose names match the regexp"]
["Filter by Name or Description" package-menu-filter-by-name-or-description
:help
"Prompt for regexp, display only packages whose name or description matches"]
["Filter by Status" package-menu-filter-by-status
:help
"Prompt for status(es), display only packages with those statuses"]
["Filter by Upgrades available" package-menu-filter-upgradable
:help "Display only installed packages for which upgrades are available"]
["Filter by Version" package-menu-filter-by-version
:help
"Prompt for version and comparison operator, display only packages of matching versions"]
["Filter Marked" package-menu-filter-marked
:help "Display only packages marked for installation or deletion"]
["Clear Filter" package-menu-clear-filter
:help "Clear package list filtering, display the entire list again"])
["Hide by Regexp" package-menu-hide-package
:help "Toggle visibility of obsolete and unwanted packages"]
["Display Older Versions" package-menu-toggle-hiding
:style toggle :selected (not package-menu--hide-packages)
:help "Display package even if a newer version is already installed"]
"--"
["Quit" quit-window :help "Quit package selection"]
["Customize" (customize-group 'package)]))