Variable: tempo-local-tags

tempo-local-tags is a buffer-local variable defined in tempo.el.gz.

Documentation

A list of locally installed tag completion lists.

It is an association list where the car of every element is a symbol whose variable value is a template list. The cdr part, if non-nil, is a function or a regexp that defines the string to match. See the documentation for the function tempo-complete-tag for more info.

tempo-tags is always in the last position in this list.

Source Code

;; Defined in /usr/src/emacs/lisp/tempo.el.gz
(defvar-local tempo-local-tags '((tempo-tags . nil))
  "A list of locally installed tag completion lists.
It is an association list where the car of every element is a symbol
whose variable value is a template list.  The cdr part, if non-nil,
is a function or a regexp that defines the string to match.  See the
documentation for the function `tempo-complete-tag' for more info.

`tempo-tags' is always in the last position in this list.")