Function: eglot-hierarchy-mode
eglot-hierarchy-mode is a byte-compiled function defined in
eglot.el.gz.
Signature
(eglot-hierarchy-mode)
Documentation
Eglot mode for viewing hierarchies.
In addition to any hooks its parent mode special-mode might have run,
this mode runs the hook eglot-hierarchy-mode-hook, as the final or
penultimate step during initialization.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(define-derived-mode eglot-hierarchy-mode special-mode
"Eglot special" "Eglot mode for viewing hierarchies.
\\{eglot-hierarchy-mode-map}"
:interactive nil
(setq eldoc-documentation-strategy
#'eldoc-documentation-compose)
(add-hook 'eldoc-documentation-functions
#'eglot-hierarchy-detail-eldoc-function
nil t)
(add-hook 'eldoc-documentation-functions
#'eglot-hierarchy-locus-eldoc-function
t t))