Variable: electric-pair-pairs

electric-pair-pairs is a customizable variable defined in elec-pair.el.gz.

Value

((34 . 34)
 (8216 . 8217)
 (8220 . 8221))

Documentation

Alist of pairs that should be used regardless of major mode.

Pairs of delimiters in this list are a fallback in case they have no syntax relevant to electric-pair-mode(var)/electric-pair-mode(fun) in the mode's syntax table.

See also the variable electric-pair-text-pairs.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/elec-pair.el.gz
;;; Electric pairing.

(defcustom electric-pair-pairs
  `((?\" . ?\")
    (,(nth 0 electric-quote-chars) . ,(nth 1 electric-quote-chars))
    (,(nth 2 electric-quote-chars) . ,(nth 3 electric-quote-chars)))
  "Alist of pairs that should be used regardless of major mode.

Pairs of delimiters in this list are a fallback in case they have
no syntax relevant to `electric-pair-mode' in the mode's syntax
table.

See also the variable `electric-pair-text-pairs'."
  :version "24.1"
  :group 'electricity
  :type '(repeat (cons character character)))