Variable: idlwave-completion-show-classes

idlwave-completion-show-classes is a customizable variable defined in idlwave.el.gz.

Value

1

Documentation

Number of classes to show when completing object methods and keywords.

When completing methods or keywords for an object with unknown class, the *Completions* buffer will show the valid classes for each completion like this:

MyMethod <Class1,Class2,Class3>

The value of this variable may be nil to inhibit display, or an integer to indicate the maximum number of classes to display.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defcustom idlwave-completion-show-classes 1
  "Number of classes to show when completing object methods and keywords.
When completing methods or keywords for an object with unknown class,
the *Completions* buffer will show the valid classes for each completion
like this:

MyMethod <Class1,Class2,Class3>

The value of this variable may be nil to inhibit display, or an integer to
indicate the maximum number of classes to display."
  :group 'idlwave-completion
  :type '(choice (const :tag "Don't show" nil)
		 (integer :tag "Number of classes shown" 1)))