Variable: extended-command-versions

extended-command-versions is a variable defined in simple.el.gz.

Value

(("M-x " #[0 "\207" [read-extended-command-predicate] 1])
 ("M-X " command-completion--command-for-this-buffer-function))

Documentation

Alist of prompts and what the extended command predicate should be.

This is used by the M-x execute-extended-command-cycle (execute-extended-command-cycle) command when reading an extended command.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defvar extended-command-versions
  (list (list "M-x " (lambda () read-extended-command-predicate))
        (list "M-X " #'command-completion--command-for-this-buffer-function))
  "Alist of prompts and what the extended command predicate should be.
This is used by the \\<minibuffer-local-must-match-map>\\[execute-extended-command-cycle] command when reading an extended command.")