Function: semantic-displayer-ghost-p

semantic-displayer-ghost-p is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-displayer-ghost-p OBJ)

Documentation

Return non-nil if OBJ is an object of type semantic-displayer-ghost(var)/semantic-displayer-ghost(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;; Ghost Text displayer
;;
(defclass semantic-displayer-ghost (semantic-displayer-focus-abstract)

  ((ghostoverlay :type overlay
		 :documentation
		 "The overlay the ghost text is displayed in.")
   (first-show :initform t
	       :documentation
	       "Non-nil if we have not seen our first show request.")
   )
  "Cycle completions inline with ghost text.
Completion displayer using ghost chars after point for focus options.
Whichever completion is currently in focus will be displayed as ghost
text using overlay options.")