Function: org-roam-buffer-set-header-line-format

org-roam-buffer-set-header-line-format is a byte-compiled function defined in org-roam-mode.el.

Signature

(org-roam-buffer-set-header-line-format STRING)

Documentation

Set the header-line using STRING.

If the face property of any part of STRING is already set, then that takes precedence. Also pad the left side of STRING so that it aligns with the text area.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-mode.el
(defun org-roam-buffer-set-header-line-format (string)
  "Set the header-line using STRING.
If the `face' property of any part of STRING is already set, then
that takes precedence. Also pad the left side of STRING so that
it aligns with the text area."
  (setq-local header-line-format
              (concat (propertize " " 'display '(space :align-to 0))
                      string)))