Variable: remember-text-format-function

remember-text-format-function is a customizable variable defined in remember.el.gz.

Value

nil

Documentation

The function to format the remembered text.

The function receives the remembered text as argument and should return the text to be remembered.

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

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/remember.el.gz
(defcustom remember-text-format-function nil
  "The function to format the remembered text.
The function receives the remembered text as argument and should
return the text to be remembered."
  :type '(choice (const nil) function)
  :version "28.1")