Variable: dired-keep-marker-hardlink
dired-keep-marker-hardlink is a customizable variable defined in
dired.el.gz.
Value
72
Documentation
Controls marking of newly made hard links.
If t, they are marked if and as the files linked to were marked. If a character, new links are unconditionally marked with that character.
Source Code
;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defcustom dired-keep-marker-hardlink ?H
"Controls marking of newly made hard links.
If t, they are marked if and as the files linked to were marked.
If a character, new links are unconditionally marked with that character."
:type '(choice (const :tag "Keep" t)
(character :tag "Mark"))
:group 'dired-mark)