Variable: denote-query-mode-hook
denote-query-mode-hook is a variable defined in denote.el.
Value
nil
Documentation
Hook run after entering denote-query-mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
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))