Variable: comint-dynamic-complete-functions

comint-dynamic-complete-functions is a variable defined in comint.el.gz.

Value

(comint-c-a-p-replace-by-expanded-history
 comint-filename-completion)

Documentation

List of functions called to perform completion.

Works like completion-at-point-functions. See also completion-at-point.

This is a good thing to set in mode hooks.

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defvar comint-dynamic-complete-functions
  '(comint-c-a-p-replace-by-expanded-history comint-filename-completion)
  "List of functions called to perform completion.
Works like `completion-at-point-functions'.
See also `completion-at-point'.

This is a good thing to set in mode hooks.")