Variable: electric-quote-replace-double

electric-quote-replace-double is a customizable variable defined in electric.el.gz.

Value

nil

Documentation

Non-nil means to replace " with an electric double quote.

Emacs replaces " with an opening double quote after a line break, whitespace, opening parenthesis, or quote, and with a closing double quote otherwise.

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

View in manual

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/electric.el.gz
(defcustom electric-quote-replace-double nil
  "Non-nil means to replace \" with an electric double quote.
Emacs replaces \" with an opening double quote after a line
break, whitespace, opening parenthesis, or quote, and with a
closing double quote otherwise."
  :version "26.1"
  :type 'boolean :safe #'booleanp :group 'electricity)