Function: semantic-displayer-tooltip
semantic-displayer-tooltip is a byte-compiled function defined in
complete.el.gz.
Signature
(semantic-displayer-tooltip &rest SLOTS)
Documentation
Create a new object of class type semantic-displayer-tooltip(var)/semantic-displayer-tooltip(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(defclass semantic-displayer-tooltip (semantic-displayer-traditional)
((mode :initarg :mode
:initform
(symbol-value 'semantic-displayer-tooltip-mode)
:documentation
"See `semantic-displayer-tooltip-mode'.")
(max-tags-initial :initarg max-tags-initial
:initform
(symbol-value 'semantic-displayer-tooltip-initial-max-tags)
:documentation
"See `semantic-displayer-tooltip-initial-max-tags'.")
(typing-count :type integer
:initform 0
:documentation
"Counter holding how many times the user types space or tab continuously before showing tags.")
(shown :type boolean
:initform nil
:documentation
"Flag representing whether tooltip has been shown yet.")
)
"Display completions options in a tooltip.
Display mechanism using tooltip for a list of possible completions.")