Variable: LaTeX-fill-break-at-separators
LaTeX-fill-break-at-separators is a customizable variable defined in
latex.el.
Value
(\\\( \\\[)
Documentation
List of separators before or after which respectively a line break will be inserted if they do not fit into one line.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
;;; Filling
;; The default value should try not to break formulae across lines (this is
;; useful for preview-latex) and give a meaningful filling.
(defcustom LaTeX-fill-break-at-separators '(\\\( \\\[)
"List of separators before or after which respectively a line
break will be inserted if they do not fit into one line."
:group 'LaTeX
:type '(set :tag "Contents"
(const :tag "Opening Brace" \{)
(const :tag "Closing Brace" \})
(const :tag "Opening Bracket" \[)
(const :tag "Opening Inline Math Switches" \\\()
(const :tag "Closing Inline Math Switches" \\\))
(const :tag "Opening Display Math Switch" \\\[)
(const :tag "Closing Display Math Switch" \\\])))