Function: pcomplete/nice
pcomplete/nice is an autoloaded and byte-compiled function defined in
pcmpl-unix.el.gz.
Signature
(pcomplete/nice)
Documentation
Completion for the nice command.
Source Code
;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
;;;###autoload
(defun pcomplete/nice ()
"Completion for the `nice' command."
(while (string-prefix-p "-" (pcomplete-arg 0))
(pcomplete-here (pcomplete-from-help "nice --help"))
(pcomplete-here))
(funcall pcomplete-command-completion-function)
(funcall (or (pcomplete-find-completion-function (pcomplete-arg 1))
pcomplete-default-completion-function)))