lsp

:clojure-lsp: Clojure implementation of the Language Server Protocol: https://clojure-lsp.io/
rafaeldelboni 2019-11-11T20:06:52.013200Z

Hey hello I’m trying to add a macro-defs for schema.core/defn

"schema.core/defn": [
            "declaration", "params", "bound-elements"
          ],
But if I declare a function without the return type LSP doesn’t work inside this function, I have always to add a :- s/Any as return type if I want the lsp working inside the functions creates with schema.core/defn, what I’m doing wrong in my macro-def?

rafaeldelboni 2019-11-11T20:20:11.013900Z

And I found this comment, looks like more people are struggling with this: https://github.com/snoe/clojure-lsp/issues/24#issuecomment-531575982