Variable: treemacs-eldoc-display
treemacs-eldoc-display is a customizable variable defined in
treemacs-customization.el.
Value
nil
Documentation
Enables eldoc display of the file path at point.
There are 2 options:
- simple: shows the absolute path of the file at point
- detailed: shows the absolute path, size, last modification time and
permissions of the file at point
Requires eldoc mode to be enabled.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-customization.el
(defcustom treemacs-eldoc-display 'simple
"Enables eldoc display of the file path at point.
There are 2 options:
- `simple': shows the absolute path of the file at point
- `detailed': shows the absolute path, size, last modification time and
permissions of the file at point
Requires eldoc mode to be enabled."
:type '(choice (const :tag "Simple" simple)
(const :tag "Detailed" detailed))
:group 'treemacs)