Function: pcomplete-list

pcomplete-list is an autoloaded, interactive and byte-compiled function defined in pcomplete.el.gz.

Signature

(pcomplete-list)

Documentation

Show the list of possible completions for the current argument.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/pcomplete.el.gz
;;;###autoload
(defun pcomplete-list ()
  "Show the list of possible completions for the current argument."
  (interactive)
  (when (and pcomplete-cycle-completions
	     pcomplete-current-completions
	     (eq last-command 'pcomplete-argument))
    (delete-char (- pcomplete-last-completion-length))
    (setq pcomplete-current-completions nil
	  pcomplete-last-completion-raw nil))
  (let ((pcomplete-show-list t))
    (with-suppressed-warnings ((obsolete pcomplete))
      (pcomplete))))