Variable: term-input-ring-file-name

term-input-ring-file-name is a customizable variable defined in term.el.gz.

Value

nil

Documentation

If non-nil, name of the file to read/write input history.

See also term-read-input-ring and term-write-input-ring.

This variable is buffer-local, and is a good thing to set in mode hooks.

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
(defcustom term-input-ring-file-name nil
  "If non-nil, name of the file to read/write input history.
See also `term-read-input-ring' and `term-write-input-ring'.

This variable is buffer-local, and is a good thing to set in mode hooks."
  :type 'boolean
  :group 'term)