Function: read-expression-switch-to-completions

read-expression-switch-to-completions is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(read-expression-switch-to-completions)

Documentation

Select the completion list window while reading an expression.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun read-expression-switch-to-completions ()
  "Select the completion list window while reading an expression."
  (interactive)
  (completion-help-at-point)
  (switch-to-completions))