Variable: org-roam-graph-shorten-titles
org-roam-graph-shorten-titles is a customizable variable defined in
org-roam-graph.el.
Value
truncate
Documentation
Determines how long titles appear in graph nodes.
Recognized values are the symbols truncate and wrap, in which
cases the title will be truncated or wrapped, respectively, if it
is longer than org-roam-graph-max-title-length.
All other values including nil will have no effect.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-graph.el
(defcustom org-roam-graph-shorten-titles 'truncate
"Determines how long titles appear in graph nodes.
Recognized values are the symbols `truncate' and `wrap', in which
cases the title will be truncated or wrapped, respectively, if it
is longer than `org-roam-graph-max-title-length'.
All other values including nil will have no effect."
:type '(choice
(const :tag "truncate" truncate)
(const :tag "wrap" wrap)
(const :tag "no" nil))
:group 'org-roam)