Variable: semantic-displayer-tooltip-mode

semantic-displayer-tooltip-mode is a customizable variable defined in complete.el.gz.

Value

standard

Documentation

Mode for the tooltip inline completion.

Standard: Show only semantic-displayer-tooltip-initial-max-tags number of completions initially. Pressing TAB will show the extended set.

Quiet: Only show completions when we have narrowed all possibilities down to a maximum of semantic-displayer-tooltip-initial-max-tags tags. Pressing TAB multiple times will also show completions.

Verbose: Always show all completions available.

The absolute maximum number of completions for all mode is determined through semantic-displayer-tooltip-max-tags.

This variable was added, or its default value changed, in Emacs 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;; Tooltip completion lister
;;
;; Written and contributed by Masatake YAMATO <yamato@redhat.com>
;;
;; Modified by Eric Ludlam for
;; * Safe compatibility for tooltip free systems.
;; * Don't use 'avoid package for tooltip positioning.

;;;###autoload
(defcustom semantic-displayer-tooltip-mode 'standard
  "Mode for the tooltip inline completion.

Standard: Show only `semantic-displayer-tooltip-initial-max-tags'
number of completions initially.  Pressing TAB will show the
extended set.

Quiet: Only show completions when we have narrowed all
possibilities down to a maximum of
`semantic-displayer-tooltip-initial-max-tags' tags.  Pressing TAB
multiple times will also show completions.

Verbose: Always show all completions available.

The absolute maximum number of completions for all mode is
determined through `semantic-displayer-tooltip-max-tags'."
  :group 'semantic
  :version "24.3"
  :type '(choice (const :tag "Standard" standard)
		 (const :tag "Quiet" quiet)
		 (const :tag "Verbose" verbose)))