Function: semantic-displayer-next-action

semantic-displayer-next-action is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-displayer-next-action ARG &rest ARGS)

Aliases

semantic-displayor-next-action (obsolete since 27.1)

Implementations

((obj semantic-displayer-ghost)) in `semantic/complete.el'.

The next action to take on the inline completion related to display.

((obj semantic-displayer-focus-abstract)) in `semantic/complete.el'.

The next action to take on the minibuffer related to display.

((obj semantic-displayer-abstract)) in `semantic/complete.el'.

The next action to take on the minibuffer related to display.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-displayer-next-action ((obj semantic-displayer-abstract))
  "The next action to take on the minibuffer related to display."
  (if (and (slot-boundp obj 'last-prefix)
	   (or (eq this-command 'semantic-complete-inline-TAB)
	       (and (string= (oref obj last-prefix) (semantic-completion-text))
		    (eq last-command this-command))))
      'scroll
    'display))