Variable: LaTeX-completion-function-map-alist-cr

LaTeX-completion-function-map-alist-cr is a variable defined in latex.el.

Value

((TeX-arg-counter . LaTeX-counter-list)
 (TeX-arg-pagestyle . LaTeX-pagestyle-list)
 (TeX-arg-environment . LaTeX-environment-list)
 (TeX-arg-length
  . #[0 "\300\301\302 \"\207"
	[mapcar
	 #[257 "@P\207" [TeX-esc] 3
	       ("/root/.emacs.d/elpa/auctex-14.1.2/latex.elc" . 242800)]
	 LaTeX-length-list]
	3]))

Documentation

Alist mapping style funcs to completion-candidates counterparts.

Each element is a cons with the name of the function used in an AUCTeX style file which queries and inserts something in the buffer as car and a function delievering completion candidates as cdr. This list contains only mapping for functions which perform completing-read. See also LaTeX-completion-function-map-alist-keyval.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar LaTeX-completion-function-map-alist-cr
  `((TeX-arg-counter . LaTeX-counter-list)
    (TeX-arg-pagestyle . LaTeX-pagestyle-list)
    (TeX-arg-environment . LaTeX-environment-list)
    (TeX-arg-length . ,(lambda () (mapcar (lambda (x)
                                            (concat TeX-esc (car x)))
                                          (LaTeX-length-list)))))
  "Alist mapping style funcs to completion-candidates counterparts.
Each element is a cons with the name of the function used in an
AUCTeX style file which queries and inserts something in the
buffer as car and a function delievering completion candidates as
cdr.  This list contains only mapping for functions which perform
completing-read.  See also
`LaTeX-completion-function-map-alist-keyval'.")