Variable: shell-dynamic-complete-functions

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

Value

(comint-c-a-p-replace-by-expanded-history
 shell-environment-variable-completion
 shell-command-completion
 shell-c-a-p-replace-by-expanded-directory
 pcomplete-completions-at-point
 shell-filename-completion
 comint-filename-completion)

Documentation

List of functions called to perform completion.

This variable is used to initialize comint-dynamic-complete-functions in the shell buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/shell.el.gz
(defcustom shell-dynamic-complete-functions
  '(comint-c-a-p-replace-by-expanded-history
    shell-environment-variable-completion
    shell-command-completion
    shell-c-a-p-replace-by-expanded-directory
    pcomplete-completions-at-point
    shell-filename-completion
    comint-filename-completion)
  "List of functions called to perform completion.
This variable is used to initialize `comint-dynamic-complete-functions' in the
shell buffer."
  :type '(repeat function)
  :group 'shell)