-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot get completion to work with Python #1909
Comments
If
No, this is proper behavior when no parameter is given to Concerning your example, Jedi has some issue to complete Numpy functions. YCM cannot do anything about it. However, you may also experience some timeout issue. If you often get the following message in the status line:
you can increase the value of |
Thanks, yes, now I see that my problem may be x = [1, 2, 3]
x.app # Don't even have to press anything where Ah, yes, I forgot that
So there's clang but no Jedi! Increasing |
Did you update YCM to the latest version? JediHTTP informations in
This is useful only if you get timeouts from YCM. It will not help for completing Numpy functions. |
You're right, I just updated everything and I am getting
And the |
I think so. Let us know if you have other issues. |
Hi,
I am reading about Jedi integration with YCM for completion and for everyone this seems to be working out of the box. Alas, not for me!
I can confirm that
set filetype?
results inpython
. My configuration is pretty minimalI normally work with other let lines uncommented. Finally, the
:YcmCompleter
command ends up with:and I can confirm that the go-tos work fine, but not the completion. The minimal example with which I am working is:
where I am expecting
shape
to appear.How can I check that Jedi has been selected? Should I be worried about this
ValueError
? Is there anything specific I need to configure to get good Python completion, ideally for function parameter names too.The text was updated successfully, but these errors were encountered: