Variable: TeX-braces-user-association

TeX-braces-user-association is a customizable variable defined in latex.el.

Value

nil

Documentation

A list of your personal association of brace symbols.

These are used for \left and \right.

The car of each entry is the brace used with \left, the cdr is the brace used with \right.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom TeX-braces-user-association nil
  "A list of your personal association of brace symbols.
These are used for \\left and \\right.

The car of each entry is the brace used with \\left,
the cdr is the brace used with \\right."
  :group 'LaTeX-macro
  :group 'LaTeX-math
  :type '(repeat (cons :format "%v"
                       (string :tag "Left")
                       (string :tag "Right"))))