Hover Support for custom symbols would be great, e.g. in the following snippet I would like to hover main and say_hello and get the docstring and function definution, like for builtin symbols.
"""
say something
"""
def say_hello(what):
print("hello", what)
"""
main func
"""
def main():
say_hello("name")
main()