Variable: list-matching-lines-prefix-face

list-matching-lines-prefix-face is a customizable variable defined in replace.el.gz.

Value

shadow

Documentation

Face used by M-x list-matching-lines (list-matching-lines) to show the prefix column.

The prefix column is the part of display that precedes the actual contents of the line; it normally shows the line number. (For multiline matches, the prefix column shows the line number for the first line and whitespace for the rest of the lines.) If this face will display the same as the default face, the prefix column will not be highlighted specially.

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

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defcustom list-matching-lines-prefix-face 'shadow
  "Face used by \\[list-matching-lines] to show the prefix column.
The prefix column is the part of display that precedes the actual
contents of the line; it normally shows the line number.  \(For
multiline matches, the prefix column shows the line number for the
first line and whitespace for the rest of the lines.\)
If this face will display the same as the default face, the prefix
column will not be highlighted specially."
  :type 'face
  :group 'matching
  :version "24.4")