tempo-expand-if-complete

tempo-expand-if-complete is an interactive compiled Lisp function in `tempo.el'.


(tempo-expand-if-complete)

Expand the tag before point if it is complete.
Returns non-nil if an expansion was made and nil otherwise.

This could as an example be used in a command that is bound to the
space bar, and looks something like this:

(defun tempo-space ()
(interactive "*")
(or (tempo-expand-if-complete)
(insert " ")))