Fork me on GitHub
#lsp
<
2021-07-23
>
ericdallo13:07:36

It's really nice to see clojure-lsp and clj-kondo on this list 🚀 😄 https://www.clojuriststogether.org/news/q3-2021-survey-results/ Thank you everybody that contributed on that ❤️

🎉 24
dharrigan14:07:05

Well deserved!

❤️ 3
lassemaatta16:07:02

I noticed that the hover feature ("show function signature in the minibuffer") only shows the qualified name of the function but not the arguments (e.g. some.ns/foo instead of some.ns/foo [a b {:keys [x y]}]). I'm almost certain this worked fine a few days ago which leads me to believe I've either broken something in my emacs config or installed a package which breaks this. Any ideas how I could debug this?

all-clear 3
ericdallo16:07:17

that is not the default behaviour of clojure-lsp, you need to add a extra config for that works as you expect:

ericdallo16:07:45

{:show-docs-arity-on-same-line? true}
in your .lsp/config.edn

lassemaatta16:07:09

Thanks, it worked!

👍 3