Function: pcomplete/id

pcomplete/id is an autoloaded and byte-compiled function defined in pcmpl-unix.el.gz.

Signature

(pcomplete/id)

Documentation

Completion for the id command.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
;;;###autoload
(defun pcomplete/id ()
  "Completion for the `id' command."
  (while (string-prefix-p "-" (pcomplete-arg 0))
    (pcomplete-here (pcomplete-from-help "id --help")))
  (while (pcomplete-here (pcmpl-unix-user-names))))