Variable: sesman-follow-symlinks
sesman-follow-symlinks is a customizable variable defined in
sesman.el.
Value
vc
Documentation
When non-nil, follow symlinks during the file expansion.
When nil, don't follow symlinks. When 'vc, follow symlinks only when
vc-follow-symlinks is non-nil. When t, always follow symlinks.
This variable was added, or its default value changed, in sesman version 0.3.3.
Source Code
;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
(defcustom sesman-follow-symlinks 'vc
"When non-nil, follow symlinks during the file expansion.
When nil, don't follow symlinks. When 'vc, follow symlinks only when
`vc-follow-symlinks' is non-nil. When t, always follow symlinks."
:group 'sesman
:type '(choice (const :tag "Comply with `vc-follow-symlinks'" vc)
(const :tag "Don't follow symlinks" nil)
(const :tag "Follow symlinks" t))
:package-version '(sesman . "0.3.3"))