non-Jedi / eglot-jl

Wrapper for using Julia LanguageServer.jl with emacs eglot
Creative Commons Zero v1.0 Universal
62 stars 11 forks source link

eglot-help-at-point doesn't exist anymore #49

Open non-Jedi opened 8 months ago

non-Jedi commented 8 months ago

Readme shows eglot-help-at-point displaying docstrings, but that functionality was removed from eglot (see e.g. https://github.com/joaotavora/eglot/issues/531). Instead you're just supposed to use eldoc

But eldoc by default seems to only shows the result of the textDocument/signatureHelp reply while entirely ignoring textDocument/hover (where the docstring is located). The intended solution seems to be to customize eldoc-documentation-strategy, but doing so results in a lot of noise in the echo area. Not sure what the best path forward is here.