Variable: LaTeX-math-abbrev-prefix

LaTeX-math-abbrev-prefix is a customizable variable defined in latex.el.

Value

"`"

Documentation

Prefix key for use in LaTeX-math-mode(var)/LaTeX-math-mode(fun).

This has to be a string representing a key sequence in a format understood by the kbd macro. This corresponds to the syntax usually used in the Emacs and Elisp manuals.

Setting this variable directly does not take effect; use M-x customize (customize).

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-math-abbrev-prefix "`"
  "Prefix key for use in `LaTeX-math-mode'.
This has to be a string representing a key sequence in a format
understood by the `kbd' macro.  This corresponds to the syntax
usually used in the Emacs and Elisp manuals.

Setting this variable directly does not take effect;
use \\[customize]."
  :group 'LaTeX-math
  :initialize #'custom-initialize-default
  :set (lambda (symbol value)
         (define-key LaTeX-math-mode-map (LaTeX-math-abbrev-prefix) t)
         (set-default symbol value)
         (define-key LaTeX-math-mode-map
           (LaTeX-math-abbrev-prefix) LaTeX-math-keymap))
  :type '(string :tag "Key sequence"))