Variable: semantic-displayer-tooltip-max-tags
semantic-displayer-tooltip-max-tags is a customizable variable defined
in complete.el.gz.
Value
25
Documentation
The maximum number of tags to be displayed.
Maximum number of completions where we have activated the extended completion list through typing TAB or SPACE multiple times. This limit needs to fit on your screen!
Note: If available, customizing this variable increases
x-max-tooltip-size to force over-sized tooltips when necessary.
This will not happen if you directly set this variable via setq.
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
(defcustom semantic-displayer-tooltip-max-tags 25
"The maximum number of tags to be displayed.
Maximum number of completions where we have activated the
extended completion list through typing TAB or SPACE multiple
times. This limit needs to fit on your screen!
Note: If available, customizing this variable increases
`x-max-tooltip-size' to force over-sized tooltips when necessary.
This will not happen if you directly set this variable via `setq'."
:group 'semantic
:version "24.3"
:type 'integer
:set (lambda (sym var)
(set-default sym var)
(when (boundp 'x-max-tooltip-size)
(if (not (consp x-max-tooltip-size))
(setq x-max-tooltip-size '(80 . 40)))
(setcdr x-max-tooltip-size
(max (1+ var) (cdr x-max-tooltip-size))))))