Variable: file-name-shadow-tty-properties

file-name-shadow-tty-properties is a customizable variable defined in rfn-eshadow.el.gz.

Value

(before-string "{" after-string "} " field shadow)

Documentation

Properties given to the shadowed part of a filename in the minibuffer.

Only used when file-name-shadow-mode(var)/file-name-shadow-mode(fun) is active and Emacs is not running under a window-system; if Emacs is running under a window system, file-name-shadow-properties is used instead.

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

Source Code

;; Defined in /usr/src/emacs/lisp/rfn-eshadow.el.gz
(defcustom file-name-shadow-tty-properties
  (purecopy '(before-string "{" after-string "} " field shadow))
  "Properties given to the `shadowed' part of a filename in the minibuffer.
Only used when `file-name-shadow-mode' is active and Emacs
is not running under a window-system; if Emacs is running under a window
system, `file-name-shadow-properties' is used instead."
  :type file-name-shadow-properties-custom-type
  :group 'minibuffer
  :version "22.1")