Function: semantic-complete-analyze-inline-idle
semantic-complete-analyze-inline-idle is an autoloaded, interactive
and byte-compiled function defined in complete.el.gz.
Signature
(semantic-complete-analyze-inline-idle)
Documentation
Perform prompt completion to do in buffer completion.
semantic-analyze-possible-completions is used to determine the
possible values.
The function returns immediately, leaving the buffer in a mode that
will perform the completion.
Configure semantic-complete-inline-analyzer-idle-displayer-class
to change how completion options are displayed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;;###autoload
(defun semantic-complete-analyze-inline-idle ()
"Perform prompt completion to do in buffer completion.
`semantic-analyze-possible-completions' is used to determine the
possible values.
The function returns immediately, leaving the buffer in a mode that
will perform the completion.
Configure `semantic-complete-inline-analyzer-idle-displayer-class'
to change how completion options are displayed."
(interactive)
;; Only do this if we are not already completing something.
(if (not (semantic-completion-inline-active-p))
(semantic-complete-inline-analyzer-idle
(semantic-analyze-current-context (point))))
;; Report a message if things didn't startup.
(if (and (called-interactively-p 'interactive)
(not (semantic-completion-inline-active-p)))
(message "Inline completion not needed.")))