Hover not working for variables
stevanmilic opened this issue · comments
Stevan Milic commented
When using coc-python doHover
action on the variable showed its type if it could be inferred by jedi. This doesn't work in coc-jedi. I'm wondering is it a limitation of the jedi-language-server
or a bug in this extensions?
Steps to reproduce
def sum(a: int, b:int) -> int:
return a + b
Hovering over the a
or b
variable in the expression should show the type of the variable (easily inferred from the function signature).
Stevan Milic commented