Variable: icomplete-with-completion-tables
icomplete-with-completion-tables is a customizable variable defined in
icomplete.el.gz.
Value
t
Documentation
Specialized completion tables with which Icomplete should operate.
If this is t, Icomplete operates on all tables.
Otherwise this should be a list of the completion tables (e.g.,
internal-complete-buffer) on which Icomplete should operate.
This variable was added, or its default value changed, in Emacs 24.4.
Probably introduced at or before Emacs version 24.4.
Source Code
;; Defined in /usr/src/emacs/lisp/icomplete.el.gz
(defcustom icomplete-with-completion-tables t
"Specialized completion tables with which Icomplete should operate.
If this is t, Icomplete operates on all tables.
Otherwise this should be a list of the completion tables (e.g.,
`internal-complete-buffer') on which Icomplete should operate."
;; Prior to 24.4, not a user-option, default '(internal-complete-buffer).
:version "24.4"
:type '(choice (const :tag "All" t)
(repeat function)))