company-jedi
company-jedi copied to clipboard
Get a function definition/implementation hint similar to the one shown in pycharm.
I test the lsp-python-ms
with the following python code snippet:
import numpy as np
from numpy import pi, sin
a = np.array([1], dtype=bool)
if np.in|vert(a) == ~a:
print('ok')
When putting the point in the above code snippet at the position denoted by |
, I would like to see information similar to that provided by pycharm
, as shown below:
Any hints for achieving this purpose with the help of company-jedi
?
Regards, HZ