Function: semantic-complete-inline-project

semantic-complete-inline-project is an autoloaded, interactive and byte-compiled function defined in complete.el.gz.

Signature

(semantic-complete-inline-project)

Documentation

Perform inline completion for any symbol in the current project.

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.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;;###autoload
(defun semantic-complete-inline-project ()
  "Perform inline completion for any symbol in the current project.
`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."
  (interactive)
  ;; Only do this if we are not already completing something.
  (if (not (semantic-completion-inline-active-p))
      (semantic-complete-inline-tag-project))
  ;; 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."))
  )