Function: LaTeX-insert-left-brace

LaTeX-insert-left-brace is an interactive and byte-compiled function defined in latex.el.

Signature

(LaTeX-insert-left-brace ARG)

Documentation

Insert typed left brace ARG times and possibly a corresponding right brace.

Automatic right brace insertion is done only if no prefix ARG is given and LaTeX-electric-left-right-brace is non-nil. Normally bound to keys (, { and [.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-insert-left-brace (arg)
  "Insert typed left brace ARG times and possibly a corresponding right brace.
Automatic right brace insertion is done only if no prefix ARG is given and
`LaTeX-electric-left-right-brace' is non-nil.
Normally bound to keys (, { and [."
  (declare (modes LaTeX-mode))
  (interactive "*P")
  (if (and LaTeX-electric-left-right-brace (not arg))
      (LaTeX-insert-left-brace-electric last-command-event)
    (self-insert-command (prefix-numeric-value arg))))