racket-langserver icon indicating copy to clipboard operation
racket-langserver copied to clipboard

Show textDocument/hover for functions from current project

Open masoodrb opened this issue 1 year ago • 1 comments

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!"))

masoodrb avatar Aug 23 '24 15:08 masoodrb

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.

dannypsnl avatar Aug 24 '24 03:08 dannypsnl