is there a way to get documentation of my own project on hover instead of text like imported from "file.rkt"
either scribl docs or insource docs similar to how clojure-lsp does when defined as
(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))
is there a way to get documentation of my own project on hover instead of text like
imported from "file.rkt"either scribl docs or insource docs similar to how clojure-lsp does when defined as