Hacker News new | ask | show | jobs
by elwell 4307 days ago
I feel like something like this is (or should be) in my editor: like an emacs package or what have you.
3 comments

Go has something similar http://godoc.org/ and I use it all the time.
Author here.

That's really cool! Thanks for posting it, it's giving me more ideas for improving the Clojalyzer.

What are your favorite or most useful features of godoc?

I can pull doc strings in Vim by moving my cursor over a function and pressing K with fireplace.vim. I imagine Emacs has something similar. I get a list of functions with taglist.vim.
A typical emacs setup includes a keybinding (C-c C-d) to display the docstring for the function under the cursor, as well as the invaluable "M-." to jump right to the function's source definition.
Author here. Thanks!

What other features could the Clojalyzer provide that you would find useful?