Samuel Roeca

Results 32 comments of Samuel Roeca

https://github.com/pappasam/jedi-language-server/blob/5de3717b4185d9d32e9a17ad963a38787850cca4/jedi_language_server/server.py#L340 This functionality basically wraps `Script.help`. I think this issue may be related to Jedi's handling of PYTHONPATH when working with conda environments (instead of normal Python virtualenvs): https://github.com/pappasam/coc-jedi/issues/4 That...

Basically, the user is pointing out how `jedi-language-server` doesn't seem to be aware of 3rd party packages installed through conda. I believe that in `vscode-python`, `jedi-language-server` is installed outside of...

As far as I can tell, this is an issue with conda-managed environments, not regular venvs. Althought I'm not sure if this is relevant, `jedi-language-server` does provide a configuration option...

Here's an abbreviated log, using the code above, using `set_debug_function` and `jedi-language-server` with `coc` (added time stamps): High level timeline: 3 seconds computing various tasks, over a minute computing 1...

Note: you can set the completion function in your codebase to print to a file like this: ```python from datetime import datetime from jedi import set_debug_function def print_to_file(color, str_out): """...

Hmm, I'm not completely understanding your point. User defined generic aliases appear to be [supported by mypy](https://mypy.readthedocs.io/en/stable/generics.html#generic-type-aliases) and type checking the above example works as expected with mypy (version 0.790)....

Do you have [coc-diagnostic](https://github.com/iamcco/coc-diagnostic) installed?

Sorry you're experiencing this! That said, I cannot reproduce on my end. ![numpy-example](https://user-images.githubusercontent.com/3723671/143498580-500d1fb5-d030-42fe-a6b2-b0d63a13ffcf.gif) Would you be able to describe as many specifics about your environment that you can think of?...

This issue is directly related to an existing issue: our default `conda` support: Basically, if might be a good idea for us to determine whether the user is using `conda`...

@mxkrn would you be able to test out the latest release and see if it resolves your issue with conda? The latest release solved a problem with system-site-packages for normal...