Variable: query-replace-from-to-separator

query-replace-from-to-separator is a customizable variable defined in replace.el.gz.

Value

" → "

Documentation

String that separates FROM and TO in the history of replacement pairs.

When nil, the pair will not be added to the history (same behavior as in Emacs 24.5).

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

View in manual

Probably introduced at or before Emacs version 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defcustom query-replace-from-to-separator " → "
  "String that separates FROM and TO in the history of replacement pairs.
When nil, the pair will not be added to the history (same behavior
as in Emacs 24.5)."
  :group 'matching
  :type '(choice
          (const :tag "Disabled" nil)
          string)
  :version "25.1")