Function: info-finder
info-finder is an autoloaded, interactive and byte-compiled function
defined in info.el.gz.
Signature
(info-finder &optional KEYWORDS)
Documentation
Display descriptions of the keywords in the Finder virtual manual.
In interactive use, a prefix argument directs this command to read a list of keywords separated by comma. After that, it displays a node with a list of packages that contain all specified keywords.
Probably introduced at or before Emacs version 23.2.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/info.el.gz
;;;###autoload
(defun info-finder (&optional keywords)
"Display descriptions of the keywords in the Finder virtual manual.
In interactive use, a prefix argument directs this command to read
a list of keywords separated by comma. After that, it displays a node
with a list of packages that contain all specified keywords."
(interactive
(when current-prefix-arg
(require 'finder)
(list
(completing-read-multiple
"Keywords: "
(mapcar #'symbol-name (mapcar #'car (append finder-known-keywords
(finder-unknown-keywords))))
nil t))))
(require 'finder)
(if keywords
(Info-find-node Info-finder-file (mapconcat 'identity keywords ", "))
(Info-find-node Info-finder-file "Top")))