Function: eglot-show-call-hierarchy
eglot-show-call-hierarchy is an interactive and byte-compiled function
defined in eglot.el.gz.
Signature
(eglot-show-call-hierarchy DIRECTION)
Documentation
Show call hierarchy for symbol at point.
DIRECTION can be:
- incoming for incoming calls;
- base for outgoing calls;
or t, the default, to consider both.
Interactively with a prefix argument, prompt for DIRECTION.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(eglot--define-hierarchy-command
eglot-show-call-hierarchy
"call"
:callHierarchyProvider
:textDocument/prepareCallHierarchy
((:callHierarchy/incomingCalls " ← " incoming "incoming calls" "called by"
:from :fromRanges)
(:callHierarchy/outgoingCalls " → " base "outgoing calls" "calls"
:to :fromRanges)))