Function: term-dynamic-complete
term-dynamic-complete is an interactive and byte-compiled function
defined in term.el.gz.
Signature
(term-dynamic-complete)
Documentation
Dynamically perform completion at point.
Calls the functions in term-dynamic-complete-functions to perform
completion until a function returns non-nil, at which point completion is
assumed to have occurred.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-dynamic-complete ()
"Dynamically perform completion at point.
Calls the functions in `term-dynamic-complete-functions' to perform
completion until a function returns non-nil, at which point completion is
assumed to have occurred."
(interactive)
(run-hook-with-args-until-success 'term-dynamic-complete-functions))