This is a collection of tips I have accumulated over my Emacs journey.
Execute the command jedi:show-doc
(by default, bound to C-c ?
).
When hacking a Lisp program as it runs (like a SDL window), the function hints in the bottom bar are not working. Run this function to fix it (courtesy of Baggers):
(defun slime-enable-concurrent-hints ()
(interactive)
(setf slime-inhibit-pipelining nil))