calysto_hy
calysto_hy copied to clipboard
There are no code autocompletion for object attributes/methods?
When I use this kernel, I found that the object's attributes/methods can't get the completion. like this:

but in raw hy-repl, I can get the completion:

I should turn on it by some configuration, or this is not supported for now?
Looks like you need the jedhy python package.
But I have followed your instructions to install jedhy:
pip3 install git+https://github.com/ekaschalk/jedhy.git
Do I need some other operations to turn it on?
Make sure that the pip you are using is associated to the same Python that runs the hy kernel.
One way to do that is, in the Python kernel, run:
Cell 1:
import sys
Cell 2:
! {sys.executable} -m pip install git+https://github.com/ekaschalk/jedhy.git
You might have to adjust this in the Hy kernel. Generally:
- find out what the Python executable is
- Use that Python to run pip