Variable: pcomplete-expand-before-complete
pcomplete-expand-before-complete is a customizable variable defined in
pcomplete.el.gz.
Value
nil
Documentation
If non-nil, expand the current argument before completing it.
This means that typing something such as $HOME/bi followed by
M-x pcomplete-argument (pcomplete-argument) will cause the variable reference to be
resolved first, and the resultant value that will be completed against
to be inserted in the buffer. Note that exactly what gets expanded
and how is entirely up to the behavior of the
pcomplete-parse-arguments-function.
Source Code
;; Defined in /usr/src/emacs/lisp/pcomplete.el.gz
(defcustom pcomplete-expand-before-complete nil
"If non-nil, expand the current argument before completing it.
This means that typing something such as `$HOME/bi' followed by
\\[pcomplete-argument] will cause the variable reference to be
resolved first, and the resultant value that will be completed against
to be inserted in the buffer. Note that exactly what gets expanded
and how is entirely up to the behavior of the
`pcomplete-parse-arguments-function'."
:type 'boolean)