Variable: denote-sort-dired-default-sort-component

denote-sort-dired-default-sort-component is a customizable variable defined in denote.el.

Value

identifier

Documentation

Set the default file name component to sort by.

This is used only if denote-sort-dired-extra-prompts omits the minibuffer prompt for which file name component to sort by.

This variable was added, or its default value changed, in denote version 4.1.0.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defcustom denote-sort-dired-default-sort-component 'identifier
  "Set the default file name component to sort by.
This is used only if `denote-sort-dired-extra-prompts' omits the
minibuffer prompt for which file name component to sort by."
  :type '(radio
          (const :tag "Sort by identifier (default)" identifier)
          (const :tag "Sort by title" title)
          (const :tag "Sort by keywords" keywords)
          (const :tag "Sort by signature" signature)
          (const :tag "Random order" random)
          (const :tag "Last modified" last-modified))
  :package-version '(denote . "4.1.0")
  :group 'denote-sort)