so in emacs, I have c-h k, c-h f; for perl i have perl doc; for c, I have man pages<br><br>in gambit scheme, when I want to lookup a quick descrition of what a function does, or look up it's source code, what's the most convenient way? currently I'm doing a mix of:<br>
<br>grep "func_name" gambit-c.txt<br><br>and<br><br>cd ~/gambit-build-dir<br><br>grep "func_name" . -R | grep "scm:"<br><br>but i feel there should be a more elegant solution<br>