Function: denote-query-mode
denote-query-mode is a byte-compiled function defined in denote.el.
Signature
(denote-query-mode)
Documentation
Major mode for queries found in the variable denote-directory(var)/denote-directory(fun).
This is used by the commands denote-backlinks, denote-grep,
denote-query-contents-link, among others.
In addition to any hooks its parent mode xref--xref-buffer-mode
might have run, this mode runs the hook denote-query-mode-hook, as
the final or penultimate step during initialization.
G denote-query-clear-all-filters
I denote-query-only-include-files-with-keywords
S denote-query-sort-last-search
X denote-query-exclude-files-with-keywords
a outline-cycle-buffer
f denote-query-focus-last-search
i denote-query-only-include-files
j outline-next-heading
k outline-previous-heading
l recenter-current-error
o delete-other-windows
s denote-grep
v outline-cycle
x denote-query-exclude-files
Aliases
denote-backlinks-mode (obsolete since 4.0.0)
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(define-derived-mode denote-query-mode xref--xref-buffer-mode "Denote Query"
"Major mode for queries found in the variable `denote-directory'.
This is used by the commands `denote-backlinks', `denote-grep',
`denote-query-contents-link', among others."
:interactive nil
(setq-local outline-minor-mode-use-buttons 'in-margins)
(outline-minor-mode 1))