Function: denote-query-sort-last-search

denote-query-sort-last-search is an interactive and byte-compiled function defined in denote.el.

Signature

(denote-query-sort-last-search COMPONENT)

Documentation

Sort files matched by the last search according to COMPONENT.

When called interactively, prompt for COMPONENT among denote-sort-components.

When called from Lisp, COMPONENT has the same meaning as in the function denote-sort-files.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-query-sort-last-search (component)
  "Sort files matched by the last search according to COMPONENT.

When called interactively, prompt for COMPONENT among `denote-sort-components'.

When called from Lisp, COMPONENT has the same meaning as in the function
`denote-sort-files'."
  (interactive (list (denote-sort-component-prompt)))
  (let ((denote-query-sorting component))
    (denote-make-links-buffer denote-query--last-query denote-query--last-files (buffer-name) '(display-buffer-same-window))))