Variable: header-line-indent

header-line-indent is a variable defined in display-line-numbers.el.gz.

Value

""

Documentation

String of spaces to indent the beginning of header-line due to line numbers.

This is intended to be used in header-line-format, and requires the header-line-indent-mode(var)/header-line-indent-mode(fun) to be turned on, in order for the width of this string to be kept updated when the line-number width changes on display. An example of a header-line-format that uses this variable might look like this:

  ("" header-line-indent THE-REST...)

where THE-REST is the format string which produces the actual text of the header-line. Also see header-line-indent-width.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/display-line-numbers.el.gz
;;;###autoload
(defvar header-line-indent ""
  "String of spaces to indent the beginning of header-line due to line numbers.
This is intended to be used in `header-line-format', and requires
the `header-line-indent-mode' to be turned on, in order for the width
of this string to be kept updated when the line-number width changes
on display.  An example of a `header-line-format' that uses this
variable might look like this:

  (\"\" header-line-indent THE-REST...)

where THE-REST is the format string which produces the actual text
of the header-line.
Also see `header-line-indent-width'.")