Variable: comint-completion-fignore
comint-completion-fignore is a customizable variable defined in
comint.el.gz.
Value
nil
Documentation
List of suffixes to be disregarded during file completion.
This mirrors the optional behavior of bash and tcsh.
Note that this applies to comint-dynamic-complete-filename only.
Probably introduced at or before Emacs version 19.24.
Source Code
;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defcustom comint-completion-fignore nil
"List of suffixes to be disregarded during file completion.
This mirrors the optional behavior of bash and tcsh.
Note that this applies to `comint-dynamic-complete-filename' only."
:type '(repeat (string :tag "Suffix"))
:group 'comint-completion)