Variable: semantic-texi-command-completion-list
semantic-texi-command-completion-list is a variable defined in
texi.el.gz.
Value
("top" "chapter" "section" "subsection" "subsubsection" "unnumbered"
"unnumberedsec" "unnumberedsubsec" "unnumberedsubsubsec" "appendix"
"appendixsec" "appendixsection" "appendixsubsec" "appendixsubsubsec"
"majorheading" "chapheading" "heading" "subheading" "subsubheading"
"cartouche" "copying" "defcv" "deffn" "defivar" "defmac" "defmethod"
"defop" "defopt" "defspec" "deftp" "deftypecv" "deftypefn"
"deftypefun" "deftypeivar" "deftypemethod" "deftypeop" "deftypevar"
"deftypevr" "defun" "defvar" "defvr" "description" "detailmenu"
"direntry" "display" "documentdescription" "enumerate" "example"
"flushleft" "flushright" "format" "ftable" "group" "html" "ifclear"
"ifset" "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext"
"ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp" "macro"
"menu" "multitable" "quotation" "smalldisplay" "smallexample"
"smallformat" "smalllisp" "table" "tex" "titlepage" "verbatim"
"vtable" 97 110 99 104 111 114 97 115 105 115 98 117 108 108 101 116
99 111 100 101 99 111 112 121 114 105 103 104 116 100 101 102 117 110
100 101 102 102 110 100 101 102 111 112 116 105 111 110 100 101 102
118 97 114 100 102 110 101 109 112 104 101 110 100 105 102 105 110
102 111 105 102 116 101 120 105 110 102 111 114 101 102 105 116 101
109 105 116 101 109 120 107 100 98 110 111 100 101 114 101 102 115
101 116 115 101 116 102 105 108 101 110 97 109 101 115 101 116 116
105 116 108 101 118 97 108 117 101 118 97 114 . "xref")
Documentation
List of commands that we might bother completing.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
(defvar semantic-texi-command-completion-list
(append (mapcar #'car texinfo-section-list)
texinfo-environments
;; Is there a better list somewhere? Here are few
;; of the top of my head.
"anchor" "asis"
"bullet"
"code" "copyright"
"defun" "deffn" "defoption" "defvar" "dfn"
"emph" "end"
"ifinfo" "iftex" "inforef" "item" "itemx"
"kdb"
"node"
"ref"
"set" "setfilename" "settitle"
"value" "var"
"xref"
)
"List of commands that we might bother completing.")