glsp
glsp copied to clipboard
Help: Get docstring for function
Hi, I wonder if there is a way to get the docstring of a function?
For example:
(defn foo (bar)
"A function that prints bar" ; docstring
(prn bar))
(prn (docstring foo)) ; Expected to print "A function that prints bar"