jeapostrophe / racket-langserver

Other
262 stars 24 forks source link

Show textDocument/hover for functions from current project #131

Open masoodrb opened 2 weeks ago

masoodrb commented 2 weeks ago

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!"))
dannypsnl commented 2 weeks ago

That's limited by upstream DrRacket, lsp here is taking their result; for document, I believe you can use open document in vscode, which will go to link of scribble document page.