In PyCharm, I want to use the docstrings to create useful quick-view documentation (the kind of documentation showing up if you hover your mouse over an object). However, I am not able to get a working reference to anything - eg. classes, functions, types...
For example, I can do
import time
def foo(a):
""" Useful short description here.
:param a: Here should be a reference to a function, e.g. :func:time.sleep
"""
The quick view documentation is showing up - everything is working as expected except the references. Any way to solve this?