Add on for Emacs eglot showing breadcrumb information in the header-line.
Install and hook eglot-managed-mode for automatic activation.
Using use-package and vc-package-install intergration:
(use-package eglot-header-line
:ensure t
:after eglot
:vc (:url "https://github.com/soerlemans/eglot-header-line")
:hook
(eglot-managed-mode . eglot-header-line-mode))Here you can see it update the header-line in seperate buffers of a C++ and Python project:
The package depends directly on eglot and useseglot-request which caches requests so its performant.

